|
@@ -218,9 +218,12 @@ import {
|
|
|
totalPrice() {
|
|
|
let that = this;
|
|
|
return this.visitors.reduce((total, item) => {
|
|
|
- let price = null;
|
|
|
- price = Number(that.pageData.salePrice);
|
|
|
- total += price;
|
|
|
+ let price = Number(that.pageData.salePrice);
|
|
|
+ if(this.pageContent.personnelNum!==0){
|
|
|
+ total = price
|
|
|
+ }else{
|
|
|
+ total += price;
|
|
|
+ }
|
|
|
return total;
|
|
|
}, 0).toFixed(2);
|
|
|
},
|
|
@@ -285,6 +288,13 @@ import {
|
|
|
// console.log('getMemberAll',res.data);
|
|
|
this.visitorList = res.data.list;
|
|
|
// this.visitors = this.visitorList.filter(obj => obj.memberId==userId);
|
|
|
+
|
|
|
+ this.selectedVisitor = [];
|
|
|
+ this.visitorList.forEach(visitor => {
|
|
|
+ if (this.visitors.find(item => item.idcard === visitor.idcard)) {
|
|
|
+ this.selectedVisitor.push(visitor.idcard);
|
|
|
+ }
|
|
|
+ });
|
|
|
this.visitors = this.visitorList.filter(obj => that.selectedVisitor.includes(obj.idcard));
|
|
|
console.log('this.visitorList',this.visitorList);
|
|
|
console.log('this.selectedVisitor',this.selectedVisitor);
|