From f5987541fae35e3bed09c5eb7ba3b5f8ab65aba9 Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期一, 21 七月 2025 17:50:02 +0800 Subject: [PATCH] 1.生产订单、生产派工、工序排产前端页面开发 --- src/views/basicData/supplierManage/index.vue | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/src/views/basicData/supplierManage/index.vue b/src/views/basicData/supplierManage/index.vue index e2a71ee..68c51d3 100644 --- a/src/views/basicData/supplierManage/index.vue +++ b/src/views/basicData/supplierManage/index.vue @@ -221,7 +221,7 @@ </template> <script setup> -import { ref } from "vue"; +import { onMounted, ref } from "vue"; import { Search } from "@element-plus/icons-vue"; import { delSupplier } from "@/api/basicData/supplierManageFile.js"; import { ElMessageBox } from "element-plus"; @@ -242,6 +242,11 @@ label: "渚涘簲鍟嗗悕绉�", prop: "supplierName", width: 250, + }, + { + label: "绾崇◣浜鸿瘑鍒彿", + prop: "taxpayerIdentificationNum", + width: 230, }, { label: "鍏徃鍦板潃", @@ -286,6 +291,7 @@ dataType: "action", label: "鎿嶄綔", align: "center", + fixed: 'right', operation: [ { name: "缂栬緫", @@ -293,6 +299,9 @@ clickFun: (row) => { openForm("edit", row); }, + disabled: (row) => { + return row.maintainUserName !== userStore.nickName + } }, ], }, @@ -470,6 +479,12 @@ const handleDelete = () => { let ids = []; if (selectedRows.value.length > 0) { + // 妫�鏌ユ槸鍚︽湁浠栦汉缁存姢鐨勬暟鎹� + const unauthorizedData = selectedRows.value.filter(item => item.maintainUserName !== userStore.nickName); + if (unauthorizedData.length > 0) { + proxy.$modal.msgWarning("涓嶅彲鍒犻櫎浠栦汉缁存姢鐨勬暟鎹�"); + return; + } ids = selectedRows.value.map((item) => item.id); } else { proxy.$modal.msgWarning("璇烽�夋嫨鏁版嵁"); -- Gitblit v1.9.3