Commit 8dc3f818 by chenjinjing

no message

parent c8237933
......@@ -397,8 +397,7 @@ export async function enterpriseBaseInfo(eId) {
}
/**
* 获取企业基本信息
* 回显
* 经营信息提交
* @param uscc
*/
export async function submitTask(eId:string, mId:string) {
......
......@@ -52,6 +52,10 @@ export async function enterpriseFinancingInfo(eId) {
dataList.push(info);
});
dataList.sort((a, b) => {
return new Date(b.investmentDate).valueOf() - new Date(a.investmentDate).valueOf();
})
return {dataList};
}
......
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