From 88ca8e3c88cdba32474d89dc55cd7135e5a41ed9 Mon Sep 17 00:00:00 2001 From: 15036302109 Date: Tue, 5 Mar 2024 14:29:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E7=89=A9=E8=B5=84=E6=97=B6?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E7=89=A9=E8=B5=84=E5=90=8D=E7=A7=B0=E5=92=8C?= =?UTF-8?q?=E6=95=B0=E9=87=8F,=E5=89=8D=E7=AB=AF=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/src/views/ehs/ehsMaterial/index.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ruoyi-ui/src/views/ehs/ehsMaterial/index.vue b/ruoyi-ui/src/views/ehs/ehsMaterial/index.vue index 5402229..66359f6 100644 --- a/ruoyi-ui/src/views/ehs/ehsMaterial/index.vue +++ b/ruoyi-ui/src/views/ehs/ehsMaterial/index.vue @@ -621,7 +621,6 @@ }, /** 查询物资信息包含 通用应急救援装备”“防汛抗旱应急救援装备”“森林防灭火应急救援装备”“救灾物资”列表 */ getList() { - console.log("111111111111"); this.loading = true; listEhsMaterial(this.queryParams).then(response => { this.ehsMaterialList = response.rows; @@ -802,7 +801,9 @@ /** 删除按钮操作 */ handleDelete(row) { const materialIds = row.materialId || this.ids; - this.$modal.confirm('是否确认删除物资信息' + materialIds + '"的数据项?').then(function() { + const materialName = row.materialName; + const materialQuantity = row.materialQuantity; + this.$modal.confirm('是否确认删除物资名称:' + materialName + ',物资数量:'+ materialQuantity +'的数据项?').then(function() { return delEhsMaterial(materialIds); }).then(() => { this.getList();