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 @@
将文件拖到此处,或点击上传
-
+ 仅允许导入xls、xlsx格式文件。 下载模板
@@ -92,8 +92,8 @@ export default { this.isUploading = false; this.$refs.upload.clearFiles(); if (response.code === 200) { - this.$message.success(`扫描到${response.data}条数据,正在导入中,可在导入日志中查看导入结果`); - this.$emit('success'); + // this.$message.success(`扫描到${response.data}条数据,正在导入中,可在导入日志中查看导入结果`); + this.$emit('success', response.data); } }, // 提交上传文件 diff --git a/src/utils/enums.js b/src/utils/enums.js index 447c898..3b89051 100644 --- a/src/utils/enums.js +++ b/src/utils/enums.js @@ -38,3 +38,9 @@ export const StoreStatus = { return [this.WAIT_STORE]; } } + +// 加工方式 +export const ProdWorkType = { + SELF: "1", // 自加工 + BUY: "2", // 外派 +} \ No newline at end of file diff --git a/src/views/bst/order/edit/components/orderProdList.vue b/src/views/bst/order/edit/components/orderProdList.vue index 0e19168..b8c63e7 100644 --- a/src/views/bst/order/edit/components/orderProdList.vue +++ b/src/views/bst/order/edit/components/orderProdList.vue @@ -5,7 +5,7 @@ size="mini" stripe :header-cell-style="headerCellStyle" - class="mini-table" + class="mini-table table-form" ref="table" > @@ -21,22 +21,39 @@
- - + + + + + + + + + + + + - + + + + + - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -91,6 +76,26 @@ + + + + + + + + + + + + + + + + + +