雇则风筛记录:保险期限显示内容修正

This commit is contained in:
wu.jifen
2025-08-04 10:13:55 +08:00
parent 5f9b2929ff
commit 1c3213cee6

View File

@@ -123,7 +123,7 @@ export default {
{ prop: 'taCode', key: '审批单号' },
{ prop: 'insuredName', key: '被保险人名称' },
{ prop: 'orgName', key: '归属机构' },
{ prop: 'insureEndDate', key: '保险期限' },
{ prop: 'insurePeriod', key: '保险期限' },
{ prop: 'taLatestSubmitDate', key: '提交时间' },
{
key: '操作',
@@ -226,6 +226,12 @@ export default {
const content = response.content.content || {}
this.tableData = content.list || []
this.tableConfig.total = content.total || 0
this.tableData.map(v => {
v.insurePeriod =
v.insureStartDate.substring(0, 10) +
' - ' +
v.insureEndDate.substring(0, 10)
})
}
})
.catch(error => {