Commit 9b048ecd authored by 汪晓凯's avatar 汪晓凯

bugfix

parent 03beac6e
......@@ -192,7 +192,7 @@
<div slot="footer" class="dialog-footer">
<el-button @click="cancel(),dialogFormVisible = false">取 消</el-button>
<el-button type="primary"
@click="amount_num&&recharge_list_value ? innerVisible=true : innerVisible=false">确 定
@click="sureNext('0')">确 定
</el-button>
</div>
</el-dialog>
......@@ -258,7 +258,7 @@
<div slot="footer" class="dialog-footer">
<el-button @click="cancel(),dialogFormVisible1 = false">取 消</el-button>
<el-button type="primary"
@click="amount_num&&recharge_list_value ? innerVisible1=true : innerVisible1=false">确 定
@click="sureNext('1')">确 定
</el-button>
</div>
</el-dialog>
......@@ -561,7 +561,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="cancel(),dialogFormVisible2 = false">取 消</el-button>
<el-button type="primary" @click="updateRobotConfig.coin_normal && updateRobotConfig.base_normal && updateRobotConfig.profit_range && updateRobotConfig.amount_range ? innerVisible2=true : innerVisible2=false">确 定</el-button>
<el-button type="primary" @click="sureNext('2')">确 定</el-button>
</div>
</el-dialog>
</div>
......@@ -738,6 +738,24 @@
this.recharge_list_value = '';
this.transferok = false;
},
//确认下一步
sureNext(type) {
( type==='0' && this.amount_num && this.recharge_list_value ? this.innerVisible=true : this.innerVisible=false);
( type==='1' && this.amount_num && this.recharge_list_value ? this.innerVisible1=true : this.innerVisible1=false);
( type==='2' && this.updateRobotConfig.coin_normal &&
this.updateRobotConfig.base_normal && this.updateRobotConfig.profit_range &&
this.updateRobotConfig.amount_range ? this.innerVisible2=true : this.innerVisible2=false);
if (!this.innerVisible && !this.innerVisible1 && !this.innerVisible2) {
this.$notify({
title: '错误',
message: '输入有误,请修改后再试',
type: 'warning',
duration: '2000',
});
}
},
//弹框确认充值
sure_recharge(key) {
const params = {
......
......@@ -150,7 +150,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="cancel(),dialogFormVisible = false">取 消</el-button>
<el-button type="primary" @click="amount_num&&recharge_list_value ? innerVisible=true : innerVisible=false">确 定</el-button>
<el-button type="primary" @click="sureNext('0')">确 定</el-button>
</div>
</el-dialog>
<!-- 修改配置弹框 -->
......@@ -201,7 +201,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="cancel(),dialogFormVisible1 = false">取 消</el-button>
<el-button type="primary" @click="min_amount && recharge_amount && max_recharge_times ? innerVisible1=true : innerVisible1=false">确 定</el-button>
<el-button type="primary" @click="sureNext('1')">确 定</el-button>
</div>
</el-dialog>
</div>
......@@ -455,6 +455,22 @@
this.transferok = false;
this.transferok1 = false;
},
//确认下一步
sureNext(type) {
( type==='0' && this.amount_num && this.recharge_list_value ? this.innerVisible=true : this.innerVisible=false );
( type==='1' && this.min_amount && this.recharge_amount && this.max_recharge_times ? this.innerVisible1=true : this.innerVisible1=false );
if (!this.innerVisible && !this.innerVisible1) {
this.$notify({
title: '错误',
message: '输入有误,请修改后再试',
type: 'warning',
duration: '2000',
});
}
},
//弹框确认充值
sure_recharge(){
const params = {
......
......@@ -334,8 +334,6 @@
let checkedCount = value.length;
this.checkAll = checkedCount === this.webs.length;
this.isIndeterminate = checkedCount > 0 && checkedCount < this.webs.length;
this.checkedCurrencies = [];
this.checkAll0 = false;
//动态筛选币种
if (value.length === 0) {
this.currencies = this.allCurrencies;
......@@ -349,6 +347,8 @@
}
}
}
this.checkedCurrencies = this.currencies;
this.checkAll0 = true;
//筛选符合条件的机器人
let ListParams = this.RobotListParams;
ListParams.platform = value;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment