Commit 8dc3f818 by chenjinjing

no message

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