Commit d56111cd authored by 李晓兵's avatar 李晓兵

'问题修复'

parent 991ef9e0
......@@ -65,7 +65,7 @@
<p>业务经办:{{ baseInfo.bp_user_id_n }}</p>
<p>联系电话:{{ baseInfo.phone }}</p>
</div>
<div class="right1" @click="callUp">
<div class="right1" @click="callUp(baseInfo.phone)">
<img src="@/assets/distributorSign/calls.png" alt="">
</div>
</div>
......@@ -375,6 +375,7 @@ export default {
name: 'FinancDetails',
params: {
project_id: window.sessionStorage.getItem('project_id'),
confirm_status: this.confirm_status,
},
})
},
......
......@@ -9,7 +9,7 @@
<h-view id="refund" class="public-style" title="还款计划">
<div class="top">
<h-header :proportion="[5,1,1]" class="header">
<div slot="left" class="h-header-btn" @click="$routeGo()">
<div slot="left" class="h-header-btn" @click="goBase">
<img src="@/assets/intoApproval/arrow.png" >
<span>还款计划</span>
</div>
......@@ -85,6 +85,7 @@ export default {
},
data () {
return {
confirm_status: this.$route.params.confirm_status,
info: {
finance_amount: '',
lease_charge: '',
......@@ -122,6 +123,23 @@ export default {
dateConverse (date) {
return date.replace(/\//g, '-')
},
goBase () {
let confirmStatus
if (this.confirm_status !== 'APPROVED') {
confirmStatus = true
} else {
confirmStatus = false
}
this.$router.replace({
name: 'ContractDetails',
params: {
isConfirm: true,
hasButtom: confirmStatus,
confirm_status: this.confirm_status
},
})
this.$router.go(-1)
},
},
}
</script>
......
......@@ -320,7 +320,7 @@
<p>业务经办:{{ bp_user_id_n }}</p>
<p>联系电话:{{ cell_phone }}</p>
</div>
<div class="right1" @click="callUp">
<div class="right1" @click="callUp(cell_phone)">
<img src="@/assets/distributorSign/calls.png" alt="">
</div>
</div>
......
......@@ -254,7 +254,7 @@
<img src="@/assets/userBind/close.png" @click="hideModal" >
</div>
<img
v-if="!bankImg"
v-if="!bankImg && !isApproved"
src="@/assets/userBind/addBack.png"
class="addBack"
@click="ocrShow('bankCard', '')"
......@@ -267,7 +267,7 @@
@click="ocrShow('bankCard', '')"
>
<img
v-if="isApproved"
v-if="!bankImg && isApproved"
src="@/assets/userBind/addBack.png"
class="addBack"
>
......@@ -1242,7 +1242,7 @@ export default {
let vm = this
vm.hlsPopup.showBigPicture({
imgUrl: pic,
width: '100%',
width: '100% !important',
})
},
},
......
......@@ -46,10 +46,10 @@
<div v-if="!licenseImg" @click="ocrShow('license', '')">
<img src="@/assets/userBind/camera.png" >
</div>
<div v-if="licenseImg && !isApproved" style="width: 100%;height: 100%" @click="ocrShow('license', '')">
<div v-if="licenseImg && !isApproved" style="width: 100%;height: 100%" class="licenseBox" @click="ocrShow('license', '')">
<img :src="licenseImg" style="width: 100%;height: 100%;margin: 0" >
</div>
<div v-if="isApproved"><!--v-if="licenseImg && isApproved"-->
<div v-if="isApproved" class="licenseBox"><!--v-if="licenseImg && isApproved"-->
<img v-if="licenseImg" :src="licenseImg" style="width: 100%;height: 100%;margin: 0" @click="showBigPicture(licenseImg)">
</div>
</div>
......@@ -358,7 +358,7 @@
<img src="@/assets/userBind/close.png" @click="hideModal" >
</div>
<img
v-if="!bankImg"
v-if="!bankImg && !isApproved"
src="@/assets/userBind/addBack.png"
class="addBack"
@click="ocrShow('bankCard', '')"
......@@ -371,7 +371,7 @@
@click="ocrShow('bankCard', '')"
>
<img
v-if="isApproved"
v-if="!bankImg && isApproved"
src="@/assets/userBind/addBack.png"
class="addBack"
>
......@@ -580,7 +580,7 @@ export default {
vm.from = true
vm.getbaseInfo()
vm.getBankInfo()
// vm.loadItemList()// 附件查询
// vm.loadItemList()// 附件查询
})
}
next()
......@@ -1163,10 +1163,10 @@ export default {
vm.legal_personMsg.living_address = res.info.living_address
Object.assign(vm.saveInfo, res.info)
if (vm.baseInfo.auth_flag === '是') {
vm.flag = false
} else if (vm.baseInfo.auth_flag === '否') {
vm.flag = true
}
vm.flag = false
} else if (vm.baseInfo.auth_flag === '否') {
vm.flag = true
}
vm.loadItemList()// 附件查询
} else {
hlsPopup.showLongCenter(res.message)
......@@ -1498,7 +1498,7 @@ export default {
},
})
},
LaUploadOpenCamera () {
LaUploadOpenCamera () {
let vm = this
let cameraoptions = {
quality: 100,
......@@ -1639,7 +1639,7 @@ export default {
let vm = this
vm.hlsPopup.showBigPicture({
imgUrl: pic,
width:'100%'
width: '100%',
})
},
},
......@@ -1858,7 +1858,13 @@ export default {
text-align: center;
margin-top: 8px;
margin-left: 16px;
.licenseBox{
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
img {
margin-top: 30px;
width: 25px;
......
This diff is collapsed.
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