From bf81c37459428fe702b7c4a024b67ff77700d299 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=A5=8B=E5=8B=87?= Date: Tue, 21 Oct 2025 14:15:51 +0800 Subject: [PATCH] =?UTF-8?q?=E8=87=AA=E5=AE=9A=E4=B9=89=E5=BC=B9=E5=87=BA?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E3=80=90=E9=80=89=E6=8B=A9=E5=A4=96=E5=8D=8F?= =?UTF-8?q?=E4=BA=BA=E5=91=98=E3=80=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LowDesign/src/LowTable/index.vue | 108 ++++++++++++++++++ .../src/shareControl/DicTableSelect.vue | 7 +- 2 files changed, 112 insertions(+), 3 deletions(-) diff --git a/src/components/LowDesign/src/LowTable/index.vue b/src/components/LowDesign/src/LowTable/index.vue index acdaf55..fb7f9eb 100644 --- a/src/components/LowDesign/src/LowTable/index.vue +++ b/src/components/LowDesign/src/LowTable/index.vue @@ -18,6 +18,18 @@ v-bind="userVBind" class="w-100%" > + + + +
(), { model: 'default', fixedSearch: () => { return {} } }) +const handleSetFormData = (key, val) => { + console.log(key); + console.log(val); + // 在这里添加其他处理逻辑 + useFun.requestApi('get', '/jeelowcode/outsidePerson/importOutside?tableId='+props.tableId+'&ids=' + val, { + }).then(res => { + if (res.length > 0) { + message.success('下发成功') + useFun.refreshChange() + } else { + message.error(res.message) + } + }) +}; + const userVBind = { prop: 'delegateUserId', type: 'edit', diff --git a/src/components/LowDesign/src/shareControl/DicTableSelect.vue b/src/components/LowDesign/src/shareControl/DicTableSelect.vue index 4ba3d6d..37c61ec 100644 --- a/src/components/LowDesign/src/shareControl/DicTableSelect.vue +++ b/src/components/LowDesign/src/shareControl/DicTableSelect.vue @@ -1,5 +1,6 @@