From 29cbf02ac6eaca5f23d83b9f8120630b9a3dc7ae Mon Sep 17 00:00:00 2001 From: hayu <1604366271@qq.com> Date: Mon, 26 May 2025 00:55:11 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=9A=E7=AD=BE=E7=AE=A1=E7=90=86=EF=BC=8C?= =?UTF-8?q?=E5=BA=93=E7=AE=A1=E5=91=98=E5=A4=9A=E9=80=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/countersign/countersignProcess.js | 8 +- .../material/countersign/process/index.vue | 151 ++++++++++++------ 2 files changed, 108 insertions(+), 51 deletions(-) diff --git a/src/api/countersign/countersignProcess.js b/src/api/countersign/countersignProcess.js index 5d6e9252..230ae9ef 100644 --- a/src/api/countersign/countersignProcess.js +++ b/src/api/countersign/countersignProcess.js @@ -20,9 +20,9 @@ export function addProcess(data) { //会签流程管理--详细信息 -export function getProcessDetail(id) { +export function getProcessDetail(ids) { return request({ - url: '/material/sign_process/'+ id, + url: '/material/sign_process/'+ ids, method: 'get', }) } @@ -38,9 +38,9 @@ export function editProcess(data) { // 会签配置管理--删除 -export function delProcess(id) { +export function delProcess(ids) { return request({ - url: '/material/sign_process/delProcess/' + id, + url: '/material/sign_process/delProcess/' + ids, method: 'post', }) } diff --git a/src/views/material/countersign/process/index.vue b/src/views/material/countersign/process/index.vue index 2481e3c8..077ad0b3 100644 --- a/src/views/material/countersign/process/index.vue +++ b/src/views/material/countersign/process/index.vue @@ -24,10 +24,10 @@ icon="el-icon-search" size="mini" @click="handleQuery" - >搜索搜索 重置重置 @@ -39,7 +39,7 @@ icon="el-icon-plus" size="mini" @click="handleAdd" - >新增新增 + min-width="150" + > + + - - - \ No newline at end of file + +// 多选组织显示样式 +::v-deep .vue-treeselect__multi-value { + margin: 2px; + max-width: 150px; +} + +::v-deep .vue-treeselect__multi-value-label { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +