|
|
@@ -75,10 +75,10 @@ export default {
|
|
|
},
|
|
|
watch:{
|
|
|
info:{
|
|
|
- handler(){
|
|
|
- this.bigCount = this.info.bigCount
|
|
|
- this.smallCount = this.info.smallCount
|
|
|
- this.userPrice = this.info.userPrice
|
|
|
+ handler(newValue){
|
|
|
+ this.bigCount = newValue.bigCount
|
|
|
+ this.smallCount = newValue.smallCount
|
|
|
+ this.userPrice = newValue.userPrice
|
|
|
},
|
|
|
deep:true
|
|
|
}
|