|
|
|
@ -36,8 +36,8 @@
|
|
|
|
<div class="form-width-ms flex align-center text-cyan">
|
|
|
|
<div class="form-width-ms flex align-center text-cyan">
|
|
|
|
<el-radio-group v-model="liftType" size="mini" style="padding-top:3px;" @change="radioChange">
|
|
|
|
<el-radio-group v-model="liftType" size="mini" style="padding-top:3px;" @change="radioChange">
|
|
|
|
<el-radio-button :label="0" title="标准充值">标准</el-radio-button>
|
|
|
|
<el-radio-button :label="0" title="标准充值">标准</el-radio-button>
|
|
|
|
<el-radio-button :label="1" title="升卡">升</el-radio-button>
|
|
|
|
<el-radio-button :label="1" title="升卡" >升</el-radio-button>
|
|
|
|
<el-radio-button :label="2" title="降卡">降</el-radio-button>
|
|
|
|
<el-radio-button :label="2" title="降卡" >降</el-radio-button>
|
|
|
|
</el-radio-group>
|
|
|
|
</el-radio-group>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
@ -379,6 +379,7 @@ import {
|
|
|
|
recAccountList,
|
|
|
|
recAccountList,
|
|
|
|
recTypeOne,
|
|
|
|
recTypeOne,
|
|
|
|
selectOne,
|
|
|
|
selectOne,
|
|
|
|
|
|
|
|
succsee,
|
|
|
|
} from "@/api/eashier.js";
|
|
|
|
} from "@/api/eashier.js";
|
|
|
|
import addmember from "@/components/member/edit/index";
|
|
|
|
import addmember from "@/components/member/edit/index";
|
|
|
|
import admin from "@/components/staffList/admin/index";
|
|
|
|
import admin from "@/components/staffList/admin/index";
|
|
|
|
@ -387,6 +388,7 @@ import staffsles from "@/components/staffList/staff/index";
|
|
|
|
import member from "@/components/member/index";
|
|
|
|
import member from "@/components/member/index";
|
|
|
|
import selec from "@/components/store/select/index";
|
|
|
|
import selec from "@/components/store/select/index";
|
|
|
|
import Template from "../../discount-coupon/issue/components/template.vue";
|
|
|
|
import Template from "../../discount-coupon/issue/components/template.vue";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
components: {
|
|
|
|
member,
|
|
|
|
member,
|
|
|
|
@ -491,6 +493,8 @@ export default {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
close() {
|
|
|
|
close() {
|
|
|
|
this.listDialogVisible = false;
|
|
|
|
this.listDialogVisible = false;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
@ -564,6 +568,19 @@ export default {
|
|
|
|
if (v != 0) {
|
|
|
|
if (v != 0) {
|
|
|
|
this.getRecList();
|
|
|
|
this.getRecList();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(this.sessionStorageData.recDebt&&this.debtMoneys){
|
|
|
|
|
|
|
|
this.$alert("存在欠款不允许升降级", "提示", {
|
|
|
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
|
|
|
confirmButtonClass: "confirmbtnFalses",
|
|
|
|
|
|
|
|
type: "warning",
|
|
|
|
|
|
|
|
center: true,
|
|
|
|
|
|
|
|
callback: (action) => {},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
this.liftType=0
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
openRec(number) {
|
|
|
|
openRec(number) {
|
|
|
|
console.log(number);
|
|
|
|
console.log(number);
|
|
|
|
@ -729,7 +746,22 @@ export default {
|
|
|
|
//打开选择会员弹窗
|
|
|
|
//打开选择会员弹窗
|
|
|
|
openMember() {
|
|
|
|
openMember() {
|
|
|
|
this.$refs.member.show(this.vip);
|
|
|
|
this.$refs.member.show(this.vip);
|
|
|
|
|
|
|
|
succsee().then((res) => {
|
|
|
|
|
|
|
|
if (res.code == "000000") {
|
|
|
|
|
|
|
|
this.$alert(res.message, "提示", {
|
|
|
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
|
|
|
confirmButtonClass: "confirmbtnFalses",
|
|
|
|
|
|
|
|
type: "info",
|
|
|
|
|
|
|
|
center: true,
|
|
|
|
|
|
|
|
callback: (action) => {},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//选中会员返回方法
|
|
|
|
//选中会员返回方法
|
|
|
|
memberData(v) {
|
|
|
|
memberData(v) {
|
|
|
|
this.form.mobilePhone = v.mobilePhone;
|
|
|
|
this.form.mobilePhone = v.mobilePhone;
|
|
|
|
@ -910,6 +942,7 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
openAddMember() {
|
|
|
|
openAddMember() {
|
|
|
|
this.$refs.addmember.show("添加");
|
|
|
|
this.$refs.addmember.show("添加");
|
|
|
|
|
|
|
|
console.log("a")
|
|
|
|
},
|
|
|
|
},
|
|
|
|
memberAdd(v) {
|
|
|
|
memberAdd(v) {
|
|
|
|
this.form.mobilePhone = v.mobilePhone;
|
|
|
|
this.form.mobilePhone = v.mobilePhone;
|
|
|
|
|