Commit 0b66d6cb authored by linxin's avatar linxin

fixed

parent e1a049d6
...@@ -28,11 +28,11 @@ ...@@ -28,11 +28,11 @@
</item> </item>
<item> <item>
<div slot="name">车辆型号 </div> <div slot="name">车辆型号 </div>
<input slot="content" v-model="rentInfo.type" readonly placeholder="自动识别车辆型号" > <input slot="content" v-model="rentInfo.vehicle_model" readonly placeholder="自动识别车辆型号" >
</item> </item>
<item> <item>
<div slot="name">合格证编号 </div> <div slot="name">合格证编号 </div>
<input slot="content" v-model="rentInfo.number" readonly placeholder="自动识别合格证编号" > <input slot="content" v-model="rentInfo.certificate_number" readonly placeholder="自动识别合格证编号" >
</item> </item>
<!-- <item> <!-- <item>
<div slot="name">厂商型号</div> <div slot="name">厂商型号</div>
......
...@@ -53,16 +53,16 @@ ...@@ -53,16 +53,16 @@
<span>{{ item.lease_item_engine_num }}</span> <span>{{ item.lease_item_engine_num }}</span>
</div> </div>
<div class="list"> <div class="list">
<p>厂商型号</p> <p>车辆型号</p>
<span>{{ item.lease_item_factory_num }}</span> <span>{{ item.vehicle_model }}</span>
</div> </div>
<div class="list"> <div class="list">
<p>车牌</p> <p>合格证编</p>
<span>{{ item.lease_item_car_num }}</span> <span>{{ item.certificate_number }}</span>
</div> </div>
</div> </div>
<div slot="content"> <div slot="content">
<span :class="['status','red']">{{ '逾期X期' }}</span> <span v-if="item.overdue_times!=undefined" :class="['status','red']">逾期{{ item.overdue_times }}</span>
<div class="plan" @click="toRepayPlan(item.contract_id)"> <div class="plan" @click="toRepayPlan(item.contract_id)">
<img src="@/assets/contractRepayment/plan.png" alt=""> <img src="@/assets/contractRepayment/plan.png" alt="">
<span>还款计划</span> <span>还款计划</span>
...@@ -92,13 +92,7 @@ export default { ...@@ -92,13 +92,7 @@ export default {
product_plan_id_n: '', product_plan_id_n: '',
product_num: '', product_num: '',
}, },
lists: [{ lists: [],
'lease_item_car_num': 'GH',
'product_code': 'GTC389',
'lease_item_factory_num': 'EF',
'lease_item_engine_num': 'CD',
'contract_id': '123',
}],
} }
}, },
computed: {}, computed: {},
......
...@@ -448,6 +448,11 @@ export default { ...@@ -448,6 +448,11 @@ export default {
vm.hlsPopup.hideLoading() vm.hlsPopup.hideLoading()
if (res.result === 'S') { if (res.result === 'S') {
vm.hlsPopup.showSuccess('申请成功') vm.hlsPopup.showSuccess('申请成功')
setTimeout(() => {
vm.$router.push({
name: 'StartList',
})
}, 2000)
} else { } else {
hlsPopup.showLongCenter(res.message) hlsPopup.showLongCenter(res.message)
} }
......
...@@ -70,9 +70,9 @@ export default { ...@@ -70,9 +70,9 @@ export default {
}, },
beforeRouteEnter (to, from, next) { beforeRouteEnter (to, from, next) {
next(vm => { next(vm => {
if (from.name === 'MyInfo') { // if (from.name === 'MyInfo') {
vm.getList() vm.getList()
} // }
}) })
}, },
watch: { watch: {
......
...@@ -170,6 +170,7 @@ export default { ...@@ -170,6 +170,7 @@ export default {
watchBpStatus () { watchBpStatus () {
if (!this.bp_id && this.user_bp_status === 'NEW') { if (!this.bp_id && this.user_bp_status === 'NEW') {
this.description = '用户绑定' this.description = '用户绑定'
this.approveBtn = false
} else if (this.bp_id && this.user_bp_status === 'NEW') { } else if (this.bp_id && this.user_bp_status === 'NEW') {
this.description = '待提交' this.description = '待提交'
} else if (this.bp_id && this.user_bp_status === 'APPROVED') { } else if (this.bp_id && this.user_bp_status === 'APPROVED') {
......
...@@ -94,10 +94,10 @@ ...@@ -94,10 +94,10 @@
<span>¥{{ money |currency }}</span> <span>¥{{ money |currency }}</span>
</div> </div>
<div class="interest"> <div class="interest">
<span>本次交易收取{{ rate }}%服务</span> <span>本次交易收取{{ rate }}%手续</span>
</div> </div>
<div class="info-item"> <div class="info-item">
<span>服务</span> <span>手续</span>
<span>{{ serviceCharge |currency }}</span> <span>{{ serviceCharge |currency }}</span>
</div> </div>
<div class="info-item" @click="show=true"> <div class="info-item" @click="show=true">
......
...@@ -93,10 +93,10 @@ ...@@ -93,10 +93,10 @@
<span>¥{{ money |currency }}</span> <span>¥{{ money |currency }}</span>
</div> </div>
<div class="interest"> <div class="interest">
<span>本次交易收取{{ rate }}%服务</span> <span>本次交易收取{{ rate }}%手续</span>
</div> </div>
<div class="info-item"> <div class="info-item">
<span>服务</span> <span>手续</span>
<span>{{ serviceCharge |currency }}</span> <span>{{ serviceCharge |currency }}</span>
</div> </div>
<div class="info-item" @click="show=true"> <div class="info-item" @click="show=true">
......
...@@ -238,7 +238,7 @@ export default new Router({ ...@@ -238,7 +238,7 @@ export default new Router({
{path: '/add-car', component: AddCar, name: 'AddCar', meta: {keepAlive: false}}, {path: '/add-car', component: AddCar, name: 'AddCar', meta: {keepAlive: false}},
// 发车确认 // 发车确认
{path: '/confirm-detail', component: ConfirmDetail, name: 'ConfirmDetail', meta: {keepAlive: true}}, {path: '/confirm-detail', component: ConfirmDetail, name: 'ConfirmDetail', meta: {keepAlive: true}},
{path: '/confirm-list', component: ConfirmList, name: 'ConfirmList', meta: {keepAlive: true}}, {path: '/confirm-list', component: ConfirmList, name: 'ConfirmList', meta: {keepAlive: false}},
// 合同查询 // 合同查询
{path: '/contract-records', component: ContractRecords, name: 'ContractRecords', meta: {keepAlive: true}}, {path: '/contract-records', component: ContractRecords, name: 'ContractRecords', meta: {keepAlive: true}},
{path: '/repay-detail', component: RepayDetail, name: 'RepayDetail', meta: {keepAlive: true}}, {path: '/repay-detail', component: RepayDetail, name: 'RepayDetail', meta: {keepAlive: true}},
......
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