From 912887af6caf542b02198e0267875e820f81e8b3 Mon Sep 17 00:00:00 2001 From: lion <120344285@qq.com> Date: Mon, 6 Feb 2023 15:32:57 +0800 Subject: [PATCH] up --- src/views/board/components/status.vue | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/views/board/components/status.vue b/src/views/board/components/status.vue index 871f12e..a44ac3d 100644 --- a/src/views/board/components/status.vue +++ b/src/views/board/components/status.vue @@ -39,13 +39,13 @@ align: 'left', sortable: false, fixed: "left", - // width: 200 + width: 200 }, { label: `未开始(${this.waitNum})`, prop: 'wait.total', align: 'center', - width: 240, + width: 250, sortable: false, customFn: (cell) => { return this.customFunc(cell,'wait') @@ -56,7 +56,7 @@ prop: 'doing.total', align: 'center', sortable: false, - width: 240, + width: 250, customFn: (cell) => { return this.customFunc(cell,'doing') } @@ -66,7 +66,7 @@ prop: 'done.total', align: 'center', sortable: false, - width: 240, + width: 250, customFn: (cell) => { return this.customFunc(cell,'done') } @@ -182,7 +182,8 @@ name: wait[k]['name'], assignedTo: wait[k]['assignedTo'], typeName: wait[k]['typeName'], - type:wait[k]['type'] + type:wait[k]['type'], + realname:wait[k]['realname'] }) } // 每个任务 根据 人名相同重新生成数组 设计开发 @@ -217,7 +218,7 @@