Commit 77848eed authored by XieZhiXiong's avatar XieZhiXiong

fix: 修复附件不存在 页面报错的问题

parent 879ebcb1
......@@ -126,7 +126,7 @@ const DetailInfo: React.FC<DetailInfoProps> = (props) => {
billDay: res.data.apply.billDay,
repayPeriod: res.data.apply.repayPeriod,
applyTime: res.data.apply.applyTime,
fileList: res.data.apply.fileList.map(item => normalizeFiledata(item.fileUrl)),
fileList: res.data.apply.fileList ? res.data.apply.fileList.map(item => normalizeFiledata(item.fileUrl)) : [],
applyType: res.data.apply.applyType,
},
verify: lodash.isNumber(quotaValuesData.quota) ? {
......
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