|
|
@@ -299,15 +299,6 @@ export default {
|
|
|
this.payTypeList = res.result.records;
|
|
|
}
|
|
|
});
|
|
|
- getAction("/business/busMemberCard/list", {
|
|
|
- id: "11111111",
|
|
|
- }).then((res) => {
|
|
|
- if (res.success) {
|
|
|
- if (res.result.records && res.result.records.length > 0) {
|
|
|
- this.memberCard = res.result.records[0];
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
},
|
|
|
methods: {
|
|
|
getbusRoomPayType() {
|
|
|
@@ -385,6 +376,18 @@ export default {
|
|
|
if (this.model.vipCustomerId) {
|
|
|
this.getMemeberCouponList();
|
|
|
}
|
|
|
+
|
|
|
+ if (this.model.vipCustomerId) {
|
|
|
+ getAction("/business/busMemberCard/list", {
|
|
|
+ id: this.model.vipCustomerId,
|
|
|
+ }).then((res) => {
|
|
|
+ if (res.success) {
|
|
|
+ if (res.result.records && res.result.records.length > 0) {
|
|
|
+ this.memberCard = res.result.records[0];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
this.visible = true;
|
|
|
},
|
|
|
submitForm() {
|