将被保人文件数组排序

This commit is contained in:
liu.xiaofeng@ebiz-digits.com
2023-11-15 15:24:08 +08:00
parent f590880d36
commit bb22178b4e

View File

@@ -1586,10 +1586,14 @@ export default {
}
})
if (!that.changeCard) {
//将投保人数组排序
//将投保人文件数组排序
that.appntSign.sort(function (a, b) {
return a.key - b.key
})
//将被保人文件数组排序
that.insuredSign.sort(function (a, b) {
return a.key - b.key
})
//获取投保和被保险人电子投保单签字状态
console.log(that.appntSign,'that.appntSign')
that.appntSign.map((item,index) => {