From 0eed3a4f14a15ce83c174449042f55e1016824f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A3=B7=E5=8F=B6?= <14103883+leaf-phos@user.noreply.gitee.com> Date: Tue, 25 Feb 2025 15:47:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=BC=E5=85=A5=E8=AE=A2=E5=8D=95=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/styles/index.scss | 13 +++ src/components/Business/Dept/DeptCheck.vue | 5 +- src/components/ImportDialog/index.vue | 8 +- src/utils/enums.js | 6 ++ .../order/edit/components/orderProdList.vue | 85 ++++++++++--------- src/views/bst/order/edit/edit.vue | 60 ++++++++++--- src/views/system/dept/index.vue | 4 + 7 files changed, 124 insertions(+), 57 deletions(-) diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss index 2941e06..6b50c09 100644 --- a/src/assets/styles/index.scss +++ b/src/assets/styles/index.scss @@ -281,3 +281,16 @@ aside { justify-content: flex-end; /* 使用标准值 */ } } + + +.table-form.el-table { + .cell { + padding-left: 0px; + padding-right: 0px; + } +} + +.table-form.el-table th.el-table__cell > .cell { + padding-left: 0px; + padding-right: 0px; +} \ No newline at end of file diff --git a/src/components/Business/Dept/DeptCheck.vue b/src/components/Business/Dept/DeptCheck.vue index 4b3e861..3c72d63 100644 --- a/src/components/Business/Dept/DeptCheck.vue +++ b/src/components/Business/Dept/DeptCheck.vue @@ -39,7 +39,7 @@ @row-click="changeSelection" @row-dblclick="select" @select-all="selectionAll" - @select="changeSelection" + @select="handleSelect" highlight-current-row style="width: 100%" size="small" @@ -185,6 +185,9 @@ export default { } }) }, + handleSelect(selection, row) { + this.changeSelection(row); + }, // 更换某一行的选中状态 changeSelection(row){ if(this.multiple){ diff --git a/src/components/ImportDialog/index.vue b/src/components/ImportDialog/index.vue index 407364a..b532717 100644 --- a/src/components/ImportDialog/index.vue +++ b/src/components/ImportDialog/index.vue @@ -15,9 +15,9 @@