bug
This commit is contained in:
parent
05b5cc40b2
commit
825bc8bec6
@ -171,7 +171,7 @@
|
||||
<el-popconfirm
|
||||
style="margin-left: 5px"
|
||||
@confirm="Deletesl(scope.row)"
|
||||
title="这是一段内容确定删除吗?">
|
||||
title="确定删除这条活动配置吗?">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
@ -996,6 +996,7 @@
|
||||
|
||||
deletedelById(resData.id).then(res=>{
|
||||
console.log(res)
|
||||
this.getlist()
|
||||
})
|
||||
|
||||
|
||||
|
@ -382,7 +382,7 @@
|
||||
<el-col :span="8">
|
||||
<el-form-item label="兑换次数" prop="exchangeTimes">
|
||||
<el-input v-model.number="dataForm.exchangeTimes" placeholder="" maxlength="30" style="width: 202px;">
|
||||
<template slot="append">个</template>
|
||||
<template slot="append">次</template>
|
||||
</el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
@ -585,7 +585,7 @@
|
||||
</el-row>
|
||||
<span slot="footer" class="dialog-footer">
|
||||
<el-button @click="dialogVisiblevip = false">取 消</el-button>
|
||||
<el-button type="primary" :disabled="isSure" @click="chooseUser(member)">确 定</el-button>
|
||||
<el-button type="primary" :disabled="isSure==false" @click="chooseUser(member)">确 定</el-button>
|
||||
</span>
|
||||
</el-dialog>
|
||||
|
||||
@ -1577,7 +1577,7 @@
|
||||
// 油号列表
|
||||
oilNumberList:[],
|
||||
// 是否可以点会员确定按钮
|
||||
isSure:true,
|
||||
isSure:false,
|
||||
// 优惠券消费金额
|
||||
couponAmount:0,
|
||||
// 是否为满减互斥
|
||||
@ -1763,7 +1763,7 @@
|
||||
},
|
||||
// 会员充值
|
||||
async userRecharge() {
|
||||
if (this.isSure){
|
||||
if (!this.isSure){
|
||||
// if (this.member){
|
||||
this.$message.error("请先选择会员")
|
||||
return;
|
||||
@ -2866,7 +2866,6 @@
|
||||
resetMember(){
|
||||
this.member = {};
|
||||
this.isMember = false;
|
||||
this.isSure = false;
|
||||
this.map.payUser == "";
|
||||
this.balance = 0;
|
||||
this.oilDiscount = 0;
|
||||
@ -3449,7 +3448,7 @@
|
||||
},
|
||||
// 选择会员信息
|
||||
handleChoose(data) {
|
||||
this.isSure = false;
|
||||
this.isSure = true;
|
||||
this.member = data;
|
||||
if (data.refuelMoney){
|
||||
this.refuelMoney = JSON.parse(data.refuelMoney)
|
||||
@ -3798,7 +3797,7 @@
|
||||
return;
|
||||
}
|
||||
getUserInfoMobile({mobile:this.userNo}).then( response => {
|
||||
if (response.data!=null){
|
||||
if (response.data){
|
||||
this.member = response.data
|
||||
if (response.data.refuelMoney){
|
||||
this.refuelMoney = JSON.parse(response.data.refuelMoney)
|
||||
@ -3806,7 +3805,7 @@
|
||||
this.refuelMoney = null
|
||||
}
|
||||
this.storeId = response.data.storeId
|
||||
this.isSure = false
|
||||
this.isSure = true
|
||||
}else {
|
||||
this.$modal.msgError("会员信息不存在")
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user