Commit 3913a5b7 authored by 邓春圆's avatar 邓春圆

保底价单位切换

parent e8f7eace
......@@ -695,10 +695,13 @@ export default {
},
methods: {
modifyAmountUnit(val){
console.log(val,'val')
if(val === 6){
this.lineform.minPrice = 900
}else {
} else if(val === 3){
this.lineform.minPrice = 10
}
else {
this.lineform.minPrice = 2
}
},
......@@ -891,7 +894,9 @@ export default {
}else {
if(this.lineform.currencyUnit === 6){
this.lineform.minPrice = 900
}else {
} else if(this.lineform.currencyUnit === 3 ){
this.lineform.minPrice = 10
} else {
this.lineform.minPrice = 2
}
}
......
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