|
@@ -30,23 +30,17 @@ export default {
|
|
|
onChange(val){
|
|
|
console.log(this.projectChangeShow,this.salClueShow)
|
|
|
if (val === '1'){
|
|
|
- this.projectChangeShow = true
|
|
|
- this.salClueShow = false
|
|
|
- this.quotedPriceShow = false
|
|
|
- this.contractShow = false
|
|
|
- this.customerShow = false
|
|
|
- }else if (val === '5') {
|
|
|
this.salClueShow = true
|
|
|
this.projectChangeShow = false
|
|
|
this.quotedPriceShow = false
|
|
|
this.contractShow = false
|
|
|
this.customerShow = false
|
|
|
- }else if (val === '2'){
|
|
|
- this.quotedPriceShow = true
|
|
|
+ }else if (val === '2') {
|
|
|
+ this.customerShow = true
|
|
|
this.salClueShow = false
|
|
|
this.projectChangeShow = false
|
|
|
+ this.quotedPriceShow = false
|
|
|
this.contractShow = false
|
|
|
- this.customerShow = false
|
|
|
}else if (val === '3'){
|
|
|
this.contractShow = true
|
|
|
this.quotedPriceShow = false
|
|
@@ -54,10 +48,16 @@ export default {
|
|
|
this.projectChangeShow = false
|
|
|
this.customerShow = false
|
|
|
}else if (val === '4'){
|
|
|
- this.customerShow = true
|
|
|
- this.contractShow = false
|
|
|
+ this.projectChangeShow = true
|
|
|
this.quotedPriceShow = false
|
|
|
this.salClueShow = false
|
|
|
+ this.contractShow = false
|
|
|
+ this.customerShow = false
|
|
|
+ }else if (val === '5'){
|
|
|
+ this.quotedPriceShow = true
|
|
|
+ this.customerShow = false
|
|
|
+ this.contractShow = false
|
|
|
+ this.salClueShow = false
|
|
|
this.projectChangeShow = false
|
|
|
}
|
|
|
console.log(this.projectChangeShow,this.salClueShow)
|