Commit fc15b8e6 authored by 王建文's avatar 王建文

融资方案

parent 7d4a9700
...@@ -11,5 +11,5 @@ module.exports = { ...@@ -11,5 +11,5 @@ module.exports = {
ocrPath:'"http://210.12.156.64:9090/r/api"', ocrPath:'"http://210.12.156.64:9090/r/api"',
fileUploadSvcPath:'"http://210.12.156.64:9090/r/api/app/fileUploadSvc?sysName=XCMG_UAT&apiName="', fileUploadSvcPath:'"http://210.12.156.64:9090/r/api/app/fileUploadSvc?sysName=XCMG_UAT&apiName="',
appId: '"com.xcmg.app.dev"', appId: '"com.xcmg.app.dev"',
currentVersion: '"3.6.1"' currentVersion: '"3.6.2"'
} }
...@@ -784,6 +784,30 @@ export default { ...@@ -784,6 +784,30 @@ export default {
this.bp_flag = true this.bp_flag = true
} }
}, },
'quotationInfo.equip_price' (newVal, oldVal) {
debugger
console.log('newVal' + newVal)
if (this.quotationInfo.deposit_ratio) {
this.quotationInfo.deposit = newVal * this.quotationInfo.deposit_ratio
}
if (this.quotationInfo.lease_charge_ratio) {
this.quotationInfo.lease_charge = newVal * this.quotationInfo.lease_charge_ratio
}
},
'quotationInfo.deposit_ratio' (newVal, oldVal) {
debugger
console.log('newVal' + newVal)
if (this.quotationInfo.equip_price) {
this.quotationInfo.deposit = this.quotationInfo.equip_price * newVal
}
},
'quotationInfo.lease_charge_ratio' (newVal, oldVal) {
debugger
console.log('newVal' + newVal)
if (this.quotationInfo.equip_price) {
this.quotationInfo.lease_charge = this.quotationInfo.equip_price * newVal
}
},
}, },
beforeRouteEnter (to, from, next) { beforeRouteEnter (to, from, next) {
next(vm => { next(vm => {
......
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
</div> </div>
</transition> </transition>
<div class="bird-icon"> <div class="bird-icon">
<h2>Hello!</h2> <h2>欢迎使用</h2>
<h3>欢迎使用租赁通~</h3> <h3>中煤科工金租租赁通</h3>
</div> </div>
<div class="login-wrap"> <div class="login-wrap">
<div class="pwd"> <div class="pwd">
......
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