From b237684ece4e8e8d41e26af4d547004c9e80fb68 Mon Sep 17 00:00:00 2001 From: JinxChen <2183691628@qq.com> Date: Wed, 12 Jan 2022 17:34:42 +0800 Subject: [PATCH] =?UTF-8?q?-=20=E4=BF=AE=E6=94=B9=20=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E4=BE=8B=E5=A4=96=E8=BD=AC=E9=80=9A=E7=94=A8=E5=BC=B9=E7=AA=97?= =?UTF-8?q?=E5=A4=A7=E5=B0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 5 +++-- .../off-limits-manage/user-exception/index.vue | 16 ++++++++++++---- 2 files changed, 15 insertions(+), 6 deletions(-) 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() {