Commit 89437671 authored by linxin's avatar linxin

Merge branch 'liuxin' into develop

parents 4bd9658e 5688b733
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<span>{{ user_phone }}</span> <span>{{ user_phone }}</span>
<div> <div>
电子签 电子签
<p :class="[elecStatus?'across':'un-across']">{{ elecStatus?'已通过':'未通过' }}</p> <p :class="[elecStatus?'across':'un-across']">{{ elecStatus?'已通过':'待认证' }}</p>
</div> </div>
</div> </div>
</div> </div>
...@@ -121,6 +121,7 @@ export default { ...@@ -121,6 +121,7 @@ export default {
vedioCount: '0', vedioCount: '0',
productCount: '0', productCount: '0',
description: '', description: '',
bp_identity: '',
approveBtn: false, approveBtn: false,
elecStatus: false, elecStatus: false,
} }
...@@ -153,6 +154,13 @@ export default { ...@@ -153,6 +154,13 @@ export default {
this.isAGENT = false this.isAGENT = false
} }
}, },
bp_identity (newVal, oldVal) {
if (newVal === 'NP_NO' || newVal === 'ORG_NO' || newVal === 'ORG_L_NO' || newVal === 'ORG_AUTH_NO ') {
this.elecStatus = false
} else {
this.elecStatus = true
}
},
}, },
created () { created () {
/* if (this.user_bp_status === 'APPROVED') { /* if (this.user_bp_status === 'APPROVED') {
...@@ -421,6 +429,7 @@ export default { ...@@ -421,6 +429,7 @@ export default {
vm.user_bp_status = res.info.user_bp_status vm.user_bp_status = res.info.user_bp_status
vm.user_bp_class = res.info.user_bp_class vm.user_bp_class = res.info.user_bp_class
vm.bp_id = res.info.user_bp_id vm.bp_id = res.info.user_bp_id
vm.bp_identity = res.info.bp_identity
window.sessionStorage.setItem('bp_id', res.info.user_bp_id) window.sessionStorage.setItem('bp_id', res.info.user_bp_id)
window.sessionStorage.setItem('bp_name', res.info.user_bp_name) window.sessionStorage.setItem('bp_name', res.info.user_bp_name)
vm.user_bp_name = res.info.user_bp_name vm.user_bp_name = res.info.user_bp_name
......
...@@ -131,7 +131,6 @@ export default { ...@@ -131,7 +131,6 @@ export default {
let notNong = vm.lists.filter(i => { let notNong = vm.lists.filter(i => {
return (i.bank_full_name.indexOf('农业') === -1) return (i.bank_full_name.indexOf('农业') === -1)
}) })
console.log(notNong)
if (vm.flag) { if (vm.flag) {
vm.select = 'nong0' vm.select = 'nong0'
} else { } else {
......
...@@ -131,7 +131,6 @@ export default { ...@@ -131,7 +131,6 @@ export default {
let notNong = vm.lists.filter(i => { let notNong = vm.lists.filter(i => {
return (i.bank_full_name.indexOf('农业') === -1) return (i.bank_full_name.indexOf('农业') === -1)
}) })
console.log(notNong)
if (vm.flag) { if (vm.flag) {
vm.select = 'nong0' vm.select = 'nong0'
} else { } else {
......
...@@ -122,7 +122,6 @@ export default { ...@@ -122,7 +122,6 @@ export default {
let notNong = vm.lists.filter(i => { let notNong = vm.lists.filter(i => {
return (i.bank_full_name.indexOf('农业') === -1) return (i.bank_full_name.indexOf('农业') === -1)
}) })
console.log(notNong)
if (vm.flag) { if (vm.flag) {
vm.select = 'nong0' vm.select = 'nong0'
} else { } else {
......
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