mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-23 08:46:45 +08:00
1、影像上传页增加了“银行卡背面”上传框
This commit is contained in:
@@ -104,6 +104,20 @@
|
|||||||
:max-count="1"
|
:max-count="1"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
<van-cell-group v-if="isAppant == '0'">
|
||||||
|
<van-field required label="银行卡反面" disabled />
|
||||||
|
</van-cell-group>
|
||||||
|
<div @click="test('fileListBankBack', saleInsuredInfo.idType)" v-if="isAppant == '0'">
|
||||||
|
<van-uploader
|
||||||
|
name="fileListBankBack"
|
||||||
|
v-model="fileListBankBack"
|
||||||
|
:after-read="afterRead"
|
||||||
|
@delete="deleteImg"
|
||||||
|
:before-delete="beforeDelete"
|
||||||
|
class="mt10 ml20"
|
||||||
|
:max-count="1"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -290,6 +304,8 @@ export default {
|
|||||||
saleInsuredPersonInfoOther: [],
|
saleInsuredPersonInfoOther: [],
|
||||||
// 银行账户
|
// 银行账户
|
||||||
fileListBank: [],
|
fileListBank: [],
|
||||||
|
// 银行卡背面
|
||||||
|
fileListBankBack: [],
|
||||||
// 被保人身份证正面
|
// 被保人身份证正面
|
||||||
fileListIdFrontInsured: [],
|
fileListIdFrontInsured: [],
|
||||||
// 被保人身份证反面
|
// 被保人身份证反面
|
||||||
@@ -542,6 +558,9 @@ export default {
|
|||||||
case 'fileListBank':
|
case 'fileListBank':
|
||||||
that.type = type
|
that.type = type
|
||||||
break
|
break
|
||||||
|
case 'fileListBankBack':
|
||||||
|
that.type = type
|
||||||
|
break
|
||||||
case 'fileListOther':
|
case 'fileListOther':
|
||||||
that.type = type
|
that.type = type
|
||||||
break
|
break
|
||||||
@@ -626,6 +645,7 @@ export default {
|
|||||||
that.type == 'fileListIdBack' ||
|
that.type == 'fileListIdBack' ||
|
||||||
that.type == 'fileLIstImg' ||
|
that.type == 'fileLIstImg' ||
|
||||||
that.type == 'fileListBank' ||
|
that.type == 'fileListBank' ||
|
||||||
|
that.type == 'fileListBankBack' ||
|
||||||
that.type == 'saleInsuredInfoOther'
|
that.type == 'saleInsuredInfoOther'
|
||||||
) {
|
) {
|
||||||
// 是投保人
|
// 是投保人
|
||||||
@@ -638,6 +658,8 @@ export default {
|
|||||||
imageInfoType = '2'
|
imageInfoType = '2'
|
||||||
} else if (that.type == 'fileListBank') {
|
} else if (that.type == 'fileListBank') {
|
||||||
imageInfoType = '3'
|
imageInfoType = '3'
|
||||||
|
} else if (that.type == 'fileListBankBack') {
|
||||||
|
imageInfoType = '4'
|
||||||
} else if (that.type == 'fileListIdFront' && that.id == '2') {
|
} else if (that.type == 'fileListIdFront' && that.id == '2') {
|
||||||
imageInfoType = '5'
|
imageInfoType = '5'
|
||||||
} else if (that.type == 'fileListIdBack' && that.id == '2') {
|
} else if (that.type == 'fileListIdBack' && that.id == '2') {
|
||||||
|
|||||||
Reference in New Issue
Block a user