|
@@ -203,6 +203,7 @@ export default {
|
|
|
{ id: 'policyName', label: '保单名称', width: '' },
|
|
|
{ id: 'policyNumber', label: '保单编号', width: '' },
|
|
|
{ id: 'policyPrice', label: '保单金额', width: '' },
|
|
|
+ { id: 'typeName_', label: '保单类型', width: '' },
|
|
|
{ id: 'startTime', label: '生效时间', width: '' },
|
|
|
{ id: 'endTime', label: '结束时间', width: '' }
|
|
|
]}
|
|
@@ -210,6 +211,7 @@ export default {
|
|
|
{ id: 'policyName', label: '保单名称', width: '' },
|
|
|
{ id: 'policyNumber', label: '保单编号', width: '' },
|
|
|
{ id: 'policyPrice', label: '保单金额', width: '' },
|
|
|
+ { id: 'typeName_', label: '保单类型', width: '' },
|
|
|
{ id: 'startTime', label: '生效时间', width: '' },
|
|
|
{ id: 'endTime', label: '结束时间', width: '' }
|
|
|
]}
|
|
@@ -235,6 +237,10 @@ export default {
|
|
|
for (var key in res.data) {
|
|
|
this.formData[key] = res.data[key]
|
|
|
}
|
|
|
+ this.formData.policy = res.data.policy.map(item => ({
|
|
|
+ ...item,
|
|
|
+ typeName_: { AC: '意外险', DS: '第三者责任险' }[item.type]
|
|
|
+ }))
|
|
|
})
|
|
|
}
|
|
|
},
|
|
@@ -273,7 +279,10 @@ export default {
|
|
|
insureList({ pageNum: 1, pageSize: -1, params: params }).then(res => {
|
|
|
resolve({
|
|
|
total: res.data.total,
|
|
|
- data: res.data.records
|
|
|
+ data: res.data.records.map(item => ({
|
|
|
+ ...item,
|
|
|
+ typeName_: { AC: '意外险', DS: '第三者责任险' }[item.type]
|
|
|
+ }))
|
|
|
})
|
|
|
})
|
|
|
})
|