|
|
@@ -91,6 +91,9 @@ export default {
|
|
|
itemPrice: {
|
|
|
type: Number,
|
|
|
default: 0
|
|
|
+ },realityWeight: {
|
|
|
+ type: Number,
|
|
|
+ default: 0
|
|
|
},
|
|
|
},
|
|
|
data () {
|
|
|
@@ -129,7 +132,8 @@ export default {
|
|
|
...this.info,
|
|
|
bigCount: this.bigCount,
|
|
|
smallCount: this.smallCount,
|
|
|
- itemPrice: this.itemPrice
|
|
|
+ itemPrice: this.itemPrice,
|
|
|
+ realityWeight: this.realityWeight
|
|
|
};
|
|
|
this.$emit("addOneEvent", this.info, params, 'noAdd');
|
|
|
}
|
|
|
@@ -137,7 +141,8 @@ export default {
|
|
|
...this.info,
|
|
|
bigCount: this.bigCount,
|
|
|
smallCount: this.smallCount,
|
|
|
- itemPrice: this.itemPrice
|
|
|
+ itemPrice: this.itemPrice,
|
|
|
+ realityWeight: this.realityWeight
|
|
|
});
|
|
|
}
|
|
|
}
|