|
@@ -136,7 +136,7 @@ export default {
|
|
|
//更改优惠码
|
|
|
changeCode() {
|
|
|
this.isShow = true;
|
|
|
- this.discount_money = "0.00";
|
|
|
+ this.discount_money = 0;
|
|
|
this.receivables_money = this.data.hasOwnProperty("price")
|
|
|
? this.data.price
|
|
|
: this.data.goods_price;
|
|
@@ -144,7 +144,7 @@ export default {
|
|
|
clearData() {
|
|
|
this.isShow = true;
|
|
|
this.discount_code = "";
|
|
|
- this.discount_money = "0.00";
|
|
|
+ this.discount_money = 0;
|
|
|
this.receivables_money = this.data.hasOwnProperty("price")
|
|
|
? this.data.price
|
|
|
: this.data.goods_price;
|