From 0f1608459970a472a36ebc1ccc7ec9cc1c30bc1c Mon Sep 17 00:00:00 2001 From: lius <Lius2225@163.com> Date: 星期一, 14 八月 2023 11:07:03 +0800 Subject: [PATCH] 用户管理列表显示调整 --- src/views/mdc/base/EquipmentList.vue | 19 ++++++++++++++++--- 1 files changed, 16 insertions(+), 3 deletions(-) diff --git a/src/views/mdc/base/EquipmentList.vue b/src/views/mdc/base/EquipmentList.vue index c523877..02bd2c3 100644 --- a/src/views/mdc/base/EquipmentList.vue +++ b/src/views/mdc/base/EquipmentList.vue @@ -274,7 +274,11 @@ batchFrozen: function (status) { if (this.selectedRowKeys.length <= 0) { - this.$message.warning('璇烽�夋嫨涓�鏉¤褰曪紒'); + // this.$message.warning('璇烽�夋嫨涓�鏉¤褰曪紒'); + this.$notification.warning({ + message:'娑堟伅', + description:"璇烽�夋嫨涓�鏉¤褰�" + }); return false; } else { let ids = ""; @@ -298,11 +302,20 @@ onOk: function () { frozenBatch({ids: ids, status: status}).then((res) => { if (res.success) { - that.$message.success(res.message); + // that.$message.success(res.message); + that.$notification.warning({ + message:'娑堟伅', + description:res.message + }); that.loadData(); that.onClearSelected(); } else { - that.$message.warning(res.message); + // that.$message.warning(res.message); + that.$notification.warning({ + message:'娑堟伅', + description:res.message + }); + } }); } -- Gitblit v1.9.3