elemetUI开关状态误操作
Posted home-
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elemetUI开关状态误操作相关的知识,希望对你有一定的参考价值。
<el-form-item> <el-switch v-model="ruleForm.useStatus" @change="switchVhange()"></el-switch> <em v-if="ruleForm.useStatus == true">开启</em> <em v-else>关闭</em> </el-form-item> ruleForm:{useStatus: true}
switchVhange() {
if(!this.ruleForm.useStatus == true) {
this.$alertMsgBox(
"是否确定关闭状态",
"系统提示",
"此为门店内部信息,请谨慎填写",
"el-icon-question",
"#FE9100")
.then(() => {
this.$messageOK("success", "已关闭");
})
.catch(() => {
this.ruleForm.useStatus = true
this.$messageOK("info", "已取消");
});
} else if(!this.ruleForm.useStatus == false) {
this.$alertMsgBox(
"是否确定开启状态",
"系统提示",
"此为门店内部信息,请谨慎填写",
"el-icon-question",
"#FE9100")
.then(() => {
this.$messageOK("success", "已开启");
})
.catch(() => {
this.ruleForm.useStatus = false
this.$messageOK("info", "已取消");
});
}
}
以上是关于elemetUI开关状态误操作的主要内容,如果未能解决你的问题,请参考以下文章
elemetUI中el-checkbox-group经过条件判断选中与不选中的问题