From e5d4aae846f5d47b56bc603a804f86a6242a911d Mon Sep 17 00:00:00 2001 From: sjl <1716605279@qq.com> Date: Wed, 4 Dec 2024 20:00:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/authority/role/index.vue | 2 +- frontend/src/views/authority/user/index.vue | 2 +- frontend/src/views/demo/proTable/index.vue | 2 +- .../machine/device/components/monitorTab.vue | 2 +- frontend/src/views/machine/device/index.vue | 2 +- .../components/errorStandardPopup.vue | 27 +- .../components/errorSystemDetailTable.vue | 4 +- .../src/views/machine/errorSystem/index.vue | 2 +- .../src/views/machine/testScript/index.vue | 2 +- .../testSource/components/parameterTable.vue | 2 +- .../src/views/machine/testSource/index.vue | 2 +- frontend/src/views/plan/planList/index.vue | 2 +- .../system/dictionary/dictData/index.vue | 2 +- .../dictionary/dictPq/components/pqPopup.vue | 641 +++++++++++------- .../views/system/dictionary/dictPq/index.vue | 2 +- .../system/dictionary/dictType/index.vue | 2 +- 16 files changed, 414 insertions(+), 284 deletions(-) diff --git a/frontend/src/views/authority/role/index.vue b/frontend/src/views/authority/role/index.vue index 9c9c85f..62b6463 100644 --- a/frontend/src/views/authority/role/index.vue +++ b/frontend/src/views/authority/role/index.vue @@ -11,7 +11,7 @@ 新增 - 批量删除 + 删除 diff --git a/frontend/src/views/authority/user/index.vue b/frontend/src/views/authority/user/index.vue index 20a1a94..0dacb54 100644 --- a/frontend/src/views/authority/user/index.vue +++ b/frontend/src/views/authority/user/index.vue @@ -11,7 +11,7 @@ 新增 - 批量删除 + 删除 diff --git a/frontend/src/views/demo/proTable/index.vue b/frontend/src/views/demo/proTable/index.vue index 3598bb1..260fa07 100644 --- a/frontend/src/views/demo/proTable/index.vue +++ b/frontend/src/views/demo/proTable/index.vue @@ -12,7 +12,7 @@ 导出用户数据 - 批量删除用户 + 删除用户 diff --git a/frontend/src/views/machine/device/components/monitorTab.vue b/frontend/src/views/machine/device/components/monitorTab.vue index b2deb88..42229f0 100644 --- a/frontend/src/views/machine/device/components/monitorTab.vue +++ b/frontend/src/views/machine/device/components/monitorTab.vue @@ -10,7 +10,7 @@ diff --git a/frontend/src/views/machine/errorSystem/components/errorStandardPopup.vue b/frontend/src/views/machine/errorSystem/components/errorStandardPopup.vue index 3b25486..0a817be 100644 --- a/frontend/src/views/machine/errorSystem/components/errorStandardPopup.vue +++ b/frontend/src/views/machine/errorSystem/components/errorStandardPopup.vue @@ -65,6 +65,7 @@ const spanMethod = ({ }: SpanMethodProps) => { if (columnIndex === 0 ) { // 检查是否为第一列 + if (rowIndex === 2 ||rowIndex === 21) { // 检查是否为第三行 return { rowspan: 2, // 合并行数 @@ -92,7 +93,7 @@ const spanMethod = ({ }; } } - if (columnIndex === 1 ){ + if (columnIndex === 1 || columnIndex === 2){ if (rowIndex === 2 || rowIndex === 8|| rowIndex === 10|| rowIndex === 12|| rowIndex === 14 || rowIndex === 16|| rowIndex === 18 @@ -122,29 +123,7 @@ const spanMethod = ({ // colspan: 0, // }; // } - } - else if(columnIndex === 2) { // 检查是否为第三列 - if (rowIndex === 2 - || rowIndex === 8|| rowIndex === 10|| rowIndex === 12|| rowIndex === 14 - || rowIndex === 16|| rowIndex === 18 - || rowIndex === 21) { - return { - rowspan: 2, - colspan: 1, - }; - } - else if (rowIndex === 3 - || rowIndex === 9|| rowIndex === 11|| rowIndex === 13|| rowIndex === 15 - || rowIndex === 17|| rowIndex === 19 - || rowIndex === 22) { // 检查是否为第四行 - return { - rowspan: 0, // 不显示该单元格 - colspan: 0, - }; - } - } - - + } }; // 关闭弹窗 diff --git a/frontend/src/views/machine/errorSystem/components/errorSystemDetailTable.vue b/frontend/src/views/machine/errorSystem/components/errorSystemDetailTable.vue index 98fb287..a3784ef 100644 --- a/frontend/src/views/machine/errorSystem/components/errorSystemDetailTable.vue +++ b/frontend/src/views/machine/errorSystem/components/errorSystemDetailTable.vue @@ -1,7 +1,7 @@ diff --git a/frontend/src/views/machine/testScript/index.vue b/frontend/src/views/machine/testScript/index.vue index 6d33d01..93f3b95 100644 --- a/frontend/src/views/machine/testScript/index.vue +++ b/frontend/src/views/machine/testScript/index.vue @@ -11,7 +11,7 @@ 新增 - 批量删除 + 删除 diff --git a/frontend/src/views/machine/testSource/components/parameterTable.vue b/frontend/src/views/machine/testSource/components/parameterTable.vue index b54dc8a..22daccb 100644 --- a/frontend/src/views/machine/testSource/components/parameterTable.vue +++ b/frontend/src/views/machine/testSource/components/parameterTable.vue @@ -15,7 +15,7 @@ - 批量删除 + 删除 diff --git a/frontend/src/views/machine/testSource/index.vue b/frontend/src/views/machine/testSource/index.vue index f9fb96c..979c4fd 100644 --- a/frontend/src/views/machine/testSource/index.vue +++ b/frontend/src/views/machine/testSource/index.vue @@ -11,7 +11,7 @@ 新增 - 批量删除 + 删除 diff --git a/frontend/src/views/plan/planList/index.vue b/frontend/src/views/plan/planList/index.vue index 8b5d098..c60ab0e 100644 --- a/frontend/src/views/plan/planList/index.vue +++ b/frontend/src/views/plan/planList/index.vue @@ -14,7 +14,7 @@ 新增 - 批量删除 + 删除 diff --git a/frontend/src/views/system/dictionary/dictData/index.vue b/frontend/src/views/system/dictionary/dictData/index.vue index 1bfb75c..37ef229 100644 --- a/frontend/src/views/system/dictionary/dictData/index.vue +++ b/frontend/src/views/system/dictionary/dictData/index.vue @@ -11,7 +11,7 @@ 导出 - 批量删除 + 删除 diff --git a/frontend/src/views/system/dictionary/dictPq/components/pqPopup.vue b/frontend/src/views/system/dictionary/dictPq/components/pqPopup.vue index 9464a13..eff7a39 100644 --- a/frontend/src/views/system/dictionary/dictPq/components/pqPopup.vue +++ b/frontend/src/views/system/dictionary/dictPq/components/pqPopup.vue @@ -1,269 +1,420 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 拓展数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend/src/views/system/dictionary/dictPq/index.vue b/frontend/src/views/system/dictionary/dictPq/index.vue index 6542dad..f641a3c 100644 --- a/frontend/src/views/system/dictionary/dictPq/index.vue +++ b/frontend/src/views/system/dictionary/dictPq/index.vue @@ -9,7 +9,7 @@ 新增 - 批量删除 + 删除 diff --git a/frontend/src/views/system/dictionary/dictType/index.vue b/frontend/src/views/system/dictionary/dictType/index.vue index 03fc6ec..62af3d7 100644 --- a/frontend/src/views/system/dictionary/dictType/index.vue +++ b/frontend/src/views/system/dictionary/dictType/index.vue @@ -10,7 +10,7 @@ 导出 - 批量删除 + 删除