diff --git a/README.md b/README.md index d4dc158..561f644 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ @@ -181,4 +181,5 @@ FIX `2021年1月12日` FIX - 修复 登录过期没有跳转到登录界面的问题 -- 修复 登录过期错误提示两次的问题 \ No newline at end of file +- 修复 登录过期错误提示两次的问题 +- 修改 用户例外转通用弹窗大小 \ No newline at end of file diff --git a/src/views/off-limits-manage/user-exception/index.vue b/src/views/off-limits-manage/user-exception/index.vue index 95f11de..7864c6d 100644 --- a/src/views/off-limits-manage/user-exception/index.vue +++ b/src/views/off-limits-manage/user-exception/index.vue @@ -1,7 +1,7 @@ @@ -102,7 +102,7 @@ - + @@ -334,9 +334,17 @@ export default { // 转通用例外 onTransform(row) { console.log("row", row); - this.dialogTrans = true; + // todo 暂时取消, 后面需求改变再根据需求开发 + /* this.dialogTrans = true; */ this.content = row.content; this.form.status = row.status === '启用' ? 2 : 0; + this.$confirm("是否转通用?", { + confirmButtonText: "确定", + cancelButtonText: "取消", + type: "warning" + }).then(() => { + this.onTransConfirm() + }).catch(() => {}); }, // 确定转通用例外 onTransConfirm() {