Commit 5a3e2af3 authored by 李晓兵's avatar 李晓兵

'修改页面变黑'

parent f742bf9e
......@@ -537,7 +537,8 @@ export default {
.repay-plan {
height: 44px;
width: 100%;
background: rgba(0,70,156,0.03);
// background: rgba(0,70,156,0.03);
background: #F2F2F2;
p {
font-family: PingFangSC-Semibold;
font-size: 14px;
......@@ -592,7 +593,8 @@ export default {
.left {
width: 16%;
height: 60px;
background: rgba(0,70,156,0.03);
// background: rgba(0,70,156,0.03);
background: #F2F2F2;
display: flex;
justify-content: center;
align-items: center
......@@ -601,7 +603,8 @@ export default {
height: 100%;
width: 66%;
margin-left: 2px;
background: rgba(0,70,156,0.03);
// background: rgba(0,70,156,0.03);
background: #F2F2F2;
p {
height: 30px;
line-height: 30px;
......
......@@ -465,7 +465,7 @@ export default {
if (this.confirm_status !== 'APPROVED') {
this.popProtocol()
}
this.getList()
// this.getList()
this.isConfirm = this.$route.params.isConfirm
},
methods: {
......
......@@ -98,10 +98,10 @@ export default {
user_phone: '',
user_bp_name: '',
user_bp_type: '',
signCount: 10,
confirmCount: 100,
vedioCount: 0,
productCount: 11,
signCount: '0',
confirmCount: '0',
vedioCount: '0',
productCount: '0',
}
},
watch: {
......@@ -135,6 +135,7 @@ export default {
beforeRouteEnter (to, from, next) {
next(vm => {
vm.userQuery()
vm.numQuery()
})
next()
},
......@@ -340,6 +341,24 @@ export default {
}
})
},
numQuery () {
let vm = this
let url = $config.basePath + 'number_display_query'
let param = {
phone: window.localStorage.getItem('user_phone'),
}
vm.$post(url, param).then(function (res) {
if (res.result === 'S') {
if('info' in res){
vm.signCount = res.info.con_sign_num
vm.confirmCount = res.info.con_confirm_num
vm.productCount = res.info.collect_num
}
} else {
this.hlsPopup.showLongCenter(res.message)
}
})
},
},
}
</script>
......
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