Commit af35f664 authored by linxin's avatar linxin

add

parent 7431a5ed
......@@ -67,6 +67,9 @@ export default {
this.showList = this.contractMsg
}
},
'keyWords': function (newVal, oldVal) {
},
},
created () {
this.getList()
......
......@@ -162,9 +162,6 @@
<h-modal ref="modal" v-model="showModalValue" position="bottom" cus-class="sign-modal">
<h-view>
<h-content class="modal-content">
<notify v-model="show1" content="请输入本人的银行卡" type="warning" class="notice" />
<notify v-model="show2" content="请输入完整字段" type="warning" class="notice" />
<notify v-model="show3" content="添加成功" type="success" class="notice" />
<div class="modal-content-add-top">
<span>添加银行卡</span>
<img src="@/assets/userBind/close.png" @click="hideModal" >
......@@ -212,9 +209,6 @@ export default {
hasSP: false,
isPaople: false,
isEnter: false,
show1: false,
show2: false,
show3: false,
showModalValue: false,
isSave: false,
isSelected: false,
......@@ -307,7 +301,6 @@ export default {
methods: {
verified () {
this.saveWord()
this.getBankInfo()
},
saveProtocol () {
let vm = this
......@@ -325,6 +318,7 @@ export default {
window.sessionStorage.setItem('user_id', res.bp_id)
window.sessionStorage.setItem('bp_name', vm.baseInfo.bp_name)
window.localStorage.setItem('bp_name', vm.baseInfo.bp_name)
vm.getBankInfo()
}
})
},
......@@ -449,18 +443,6 @@ export default {
}
vm.hlsUtil.takePicture(cameraoptions, success, error)
},
showNotifyAtTop () {
if (this.show1) return
this.show1 = true
},
showNotifyAtTop1 () {
if (this.show2) return
this.show2 = true
},
showNotifyAtTopSuccess () {
if (this.show3) return
this.show3 = true
},
successCall () {
this.hideModal()
this.getBankInfo()
......@@ -477,14 +459,10 @@ export default {
this.bank.bank_full_name === '' ||
this.bank.bank_branch_name === ''
) {
// this.showNotifyAtTop1()
this.hlsPopup.showLongCenter('请输入完整字段')
} else if (this.hlsUtil.isBankAccount(this.bank.bank_account_num)) {
// this.hlsPopup.showLongCenter('银行卡号有误')
this.hlsPopup.showLongCenter('银行卡号有误')
} else if (this.bank.bank_account_name !== bpName) {
console.log(bpName)
// this.showNotifyAtTop()
this.hlsPopup.showLongCenter('请输入本人银行卡')
} else {
let list = JSON.parse(JSON.stringify(this.bank))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment