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

'修改页面变黑'

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