Commit af35f664 authored by linxin's avatar linxin

add

parent 7431a5ed
...@@ -67,6 +67,9 @@ export default { ...@@ -67,6 +67,9 @@ export default {
this.showList = this.contractMsg this.showList = this.contractMsg
} }
}, },
'keyWords': function (newVal, oldVal) {
},
}, },
created () { created () {
this.getList() this.getList()
......
...@@ -162,9 +162,6 @@ ...@@ -162,9 +162,6 @@
<h-modal ref="modal" v-model="showModalValue" position="bottom" cus-class="sign-modal"> <h-modal ref="modal" v-model="showModalValue" position="bottom" cus-class="sign-modal">
<h-view> <h-view>
<h-content class="modal-content"> <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"> <div class="modal-content-add-top">
<span>添加银行卡</span> <span>添加银行卡</span>
<img src="@/assets/userBind/close.png" @click="hideModal" > <img src="@/assets/userBind/close.png" @click="hideModal" >
...@@ -212,9 +209,6 @@ export default { ...@@ -212,9 +209,6 @@ export default {
hasSP: false, hasSP: false,
isPaople: false, isPaople: false,
isEnter: false, isEnter: false,
show1: false,
show2: false,
show3: false,
showModalValue: false, showModalValue: false,
isSave: false, isSave: false,
isSelected: false, isSelected: false,
...@@ -307,7 +301,6 @@ export default { ...@@ -307,7 +301,6 @@ export default {
methods: { methods: {
verified () { verified () {
this.saveWord() this.saveWord()
this.getBankInfo()
}, },
saveProtocol () { saveProtocol () {
let vm = this let vm = this
...@@ -325,6 +318,7 @@ export default { ...@@ -325,6 +318,7 @@ export default {
window.sessionStorage.setItem('user_id', res.bp_id) window.sessionStorage.setItem('user_id', res.bp_id)
window.sessionStorage.setItem('bp_name', vm.baseInfo.bp_name) window.sessionStorage.setItem('bp_name', vm.baseInfo.bp_name)
window.localStorage.setItem('bp_name', vm.baseInfo.bp_name) window.localStorage.setItem('bp_name', vm.baseInfo.bp_name)
vm.getBankInfo()
} }
}) })
}, },
...@@ -449,18 +443,6 @@ export default { ...@@ -449,18 +443,6 @@ export default {
} }
vm.hlsUtil.takePicture(cameraoptions, success, error) 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 () { successCall () {
this.hideModal() this.hideModal()
this.getBankInfo() this.getBankInfo()
...@@ -477,14 +459,10 @@ export default { ...@@ -477,14 +459,10 @@ export default {
this.bank.bank_full_name === '' || this.bank.bank_full_name === '' ||
this.bank.bank_branch_name === '' this.bank.bank_branch_name === ''
) { ) {
// this.showNotifyAtTop1()
this.hlsPopup.showLongCenter('请输入完整字段') this.hlsPopup.showLongCenter('请输入完整字段')
} else if (this.hlsUtil.isBankAccount(this.bank.bank_account_num)) { } else if (this.hlsUtil.isBankAccount(this.bank.bank_account_num)) {
// this.hlsPopup.showLongCenter('银行卡号有误')
this.hlsPopup.showLongCenter('银行卡号有误') this.hlsPopup.showLongCenter('银行卡号有误')
} else if (this.bank.bank_account_name !== bpName) { } else if (this.bank.bank_account_name !== bpName) {
console.log(bpName)
// this.showNotifyAtTop()
this.hlsPopup.showLongCenter('请输入本人银行卡') this.hlsPopup.showLongCenter('请输入本人银行卡')
} else { } else {
let list = JSON.parse(JSON.stringify(this.bank)) 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