mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-09 18:06:44 +08:00
将被保人文件数组排序
This commit is contained in:
@@ -1586,10 +1586,14 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
if (!that.changeCard) {
|
if (!that.changeCard) {
|
||||||
//将投保人数组排序
|
//将投保人文件数组排序
|
||||||
that.appntSign.sort(function (a, b) {
|
that.appntSign.sort(function (a, b) {
|
||||||
return a.key - b.key
|
return a.key - b.key
|
||||||
})
|
})
|
||||||
|
//将被保人文件数组排序
|
||||||
|
that.insuredSign.sort(function (a, b) {
|
||||||
|
return a.key - b.key
|
||||||
|
})
|
||||||
//获取投保和被保险人电子投保单签字状态
|
//获取投保和被保险人电子投保单签字状态
|
||||||
console.log(that.appntSign,'that.appntSign')
|
console.log(that.appntSign,'that.appntSign')
|
||||||
that.appntSign.map((item,index) => {
|
that.appntSign.map((item,index) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user