From 85bbaefc17b834b8a3485fe7008641145c93e70d Mon Sep 17 00:00:00 2001 From: Pengxiansen <2422914688@qq.com> Date: Wed, 26 Feb 2025 21:14:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/growthpath/GrowthPath.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/growthpath/GrowthPath.vue b/src/views/growthpath/GrowthPath.vue index 67ca3855..0962d92f 100644 --- a/src/views/growthpath/GrowthPath.vue +++ b/src/views/growthpath/GrowthPath.vue @@ -561,13 +561,13 @@ export default { dataIndex: "qualsLevelDesr", key: "qualsLevelDesr", align: "center", - width:120, + width: 120, ellipsis: true, }, { title: "完成人数/总人数", align: "center", - width:140, + width: 140, ellipsis: true, customRender: ({ record }) => { return `${record.comLearnNum}/${record.learnNum}`; @@ -576,7 +576,7 @@ export default { { title: "必修|选修", align: "center", - width:110, + width: 110, ellipsis: true, customRender: ({ record }) => { return `${record.requiredTaskNum}|${record.elePublishedNum}`; @@ -586,7 +586,7 @@ export default { title: "完成比例", dataIndex: "ratio", key: "ratio", - width:90, + width: 90, align: "center", ellipsis: true, customRender: ({ record }) => { @@ -598,7 +598,7 @@ export default { dataIndex: "isPublished", key: "isPublished", align: "center", - width:80, + width: 80, ellipsis: true, customRender: ({ record }) => { return record.isPublished ? "已发布" : "未发布";