From e5d73c8c050c08172affb9e00e97f3c22ed9d9b6 Mon Sep 17 00:00:00 2001 From: wangting <675591594@qq.com> Date: 星期五, 04 八月 2023 12:08:20 +0800 Subject: [PATCH] 修改流程启动参数,流程列表展示页面 --- Source/UBCS-WEB/src/views/work/send.vue | 78 +++++++++++++++++---------------------- 1 files changed, 34 insertions(+), 44 deletions(-) diff --git a/Source/UBCS-WEB/src/views/work/send.vue b/Source/UBCS-WEB/src/views/work/send.vue index c1931ee..2cd93e8 100644 --- a/Source/UBCS-WEB/src/views/work/send.vue +++ b/Source/UBCS-WEB/src/views/work/send.vue @@ -78,50 +78,40 @@ dialogWidth: 900, menuWidth: 150, dialogClickModal: false, - column: [ - { - label: "娴佺▼鍒嗙被", - type: "select", - row: true, - dicUrl: "/api/ubcs-system/dict/dictionary?code=flow", - props: { - label: "dictValue", - value: "dictKey" - }, - dataType: "number", - slot: true, - prop: "category", - search: true, - hide: true, - width: 100, - }, - { - label: '娴佺▼鍚嶇О', - prop: 'processDefinitionName', - search: true, - }, - { - label: '褰撳墠姝ラ', - prop: 'taskName', - }, - { - label: '娴佺▼鐗堟湰', - prop: 'processDefinitionVersion', - slot: true, - width: 80, - }, - { - label: '娴佺▼杩涘害', - prop: 'processIsFinished', - slot: true, - width: 80, - }, - { - label: '鐢宠鏃堕棿', - prop: 'createTime', - width: 165, - }, - ] + align: 'center', + column: [{ + label: '娴佺▼鍚嶇О', + prop: 'processName', + search: true, + headerAlign:'center', + align:'left', + sortable:true, + formatter: (val) => { + return val.variables.processName + } + }, { + label: '娴佺▼杩涘害', + prop: 'processIsFinished', + slot: true, + width: 80, + }, { + label: '褰撳墠姝ラ', + prop: 'taskName', + }, { + label: '鍙戣捣鏃堕棿', + sortable:true, + prop: 'createTime', + },{ + label: '鎵�灞炴祦绋嬫ā鏉�', + sortable:true, + prop: 'categoryName' + }, { + label: '娴佺▼鎻忚堪', + prop: 'processDesc', + formatter: (val) => { + return val.variables.processDesc + } + }] }, data: [] }; -- Gitblit v1.9.3