Commit 8033cf94 by chenjinjing

no message

parent e77faa95
......@@ -40,12 +40,13 @@ export async function enterpriseFinancingInfo(eId) {
} = item;
let info:any = {
rId, financingAmount, financingRounds, fuHuaQiInvestment,investmentDate:new Date(investmentDate).valueOf(), investmentInstitutionsName, valuation
rId, financingAmount:parseFloat(financingAmount), financingRounds, fuHuaQiInvestment,
investmentDate:new Date(investmentDate).valueOf(), investmentInstitutionsName, valuation
};
if (fuHuaQiInvestment == enumConfig.STATE.) {
info.fuHuaQiInvestmentStyle = fuHuaQiInvestmentStyle;
info.fuHuaQiInvestmentAmount = fuHuaQiInvestmentAmount;
info.fuHuaQiInvestmentAmount = parseFloat(fuHuaQiInvestmentAmount);
}
dataList.push(info);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment