From 1c3213cee691946e4c391cba75f35e969e6acb7f Mon Sep 17 00:00:00 2001 From: "wu.jifen" Date: Mon, 4 Aug 2025 10:13:55 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9B=87=E5=88=99=E9=A3=8E=E7=AD=9B=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=EF=BC=9A=E4=BF=9D=E9=99=A9=E6=9C=9F=E9=99=90=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E5=86=85=E5=AE=B9=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/applicationManagement/employRecord/index.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/views/applicationManagement/employRecord/index.vue b/src/views/applicationManagement/employRecord/index.vue index d890d6b..539c5a3 100644 --- a/src/views/applicationManagement/employRecord/index.vue +++ b/src/views/applicationManagement/employRecord/index.vue @@ -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 => {