|
@@ -221,6 +221,9 @@ export default {
|
|
|
this.price = 0;
|
|
this.price = 0;
|
|
|
this.totalSettlement = this.collectionList.length;
|
|
this.totalSettlement = this.collectionList.length;
|
|
|
this.collectionList.forEach(item => {
|
|
this.collectionList.forEach(item => {
|
|
|
|
|
+ if (item.enabled == false) {
|
|
|
|
|
+ item.price = 0;
|
|
|
|
|
+ }
|
|
|
item.check = true;
|
|
item.check = true;
|
|
|
this.price += Number(item.price);
|
|
this.price += Number(item.price);
|
|
|
});
|
|
});
|