完善前端

This commit is contained in:
kerwincui
2022-04-14 00:47:59 +08:00
parent 8c50fe34a0
commit 69c4111f02
14 changed files with 1154 additions and 502 deletions

View File

@@ -296,10 +296,8 @@ export default {
},
// 授权码状态修改
changeIsAuthorize() {
let text = this.form.isAuthorize === "1" ? "启用" : "停用";
let _this = this;
this.$modal.confirm('确认要[' + text + ']' + this.form.productName + '授权码吗?').then(function () {
_this.submitForm();
let text = this.form.isAuthorize == "1" ? "启用" : "停用";
this.$modal.confirm('确认要' + text + '授权码吗?').then(function () {
}).catch(() => {
this.form.isAuthorize = 0;
});