|
|
@@ -220,7 +220,7 @@ export default {
|
|
|
item.check = true;
|
|
|
this.price += Number(item.price);
|
|
|
});
|
|
|
- // this.price = this.price.toFixed(1);
|
|
|
+ this.price = this.price.toFixed(2);
|
|
|
this.collectionListSelected = this.collectionList;
|
|
|
} else {
|
|
|
this.price = 0;
|
|
|
@@ -248,7 +248,7 @@ export default {
|
|
|
newCollectionList.forEach(item => {
|
|
|
this.price += item.price;
|
|
|
});
|
|
|
- // this.price = this.price.toFixed(1);
|
|
|
+ this.price = this.price.toFixed(2);
|
|
|
// if (this.price == '0.0') {
|
|
|
// this.price = 0;
|
|
|
// }
|