diff --git a/src/components/growthpath/StudentSeeStu.vue b/src/components/growthpath/StudentSeeStu.vue index 01a471df..c77087fe 100644 --- a/src/components/growthpath/StudentSeeStu.vue +++ b/src/components/growthpath/StudentSeeStu.vue @@ -209,7 +209,7 @@ export default { ellipsis: true, }, { - title: "开始时间", + title: "任务开始时间", dataIndex: "taskStartTime", key: "taskStartTime", align: "center", @@ -218,7 +218,7 @@ export default { }, }, { - title: "完成时间", + title: "任务完成时间", dataIndex: "finishTime", key: "finishTime", align: "center", diff --git a/src/views/growthpath/GrowthAddPath.vue b/src/views/growthpath/GrowthAddPath.vue index a05c7d80..2cc05549 100644 --- a/src/views/growthpath/GrowthAddPath.vue +++ b/src/views/growthpath/GrowthAddPath.vue @@ -562,6 +562,7 @@ export default { key: "stdPositionName", align: "center", ellipsis: true, + width: 400, customRender: ({ record }) => { return record.stdPosition ? `${record.stdPositionName}(${record.stdPosition})` @@ -599,7 +600,7 @@ export default { dataIndex: "ratio", key: "ratio", align: "center", - width:90, + width:100, ellipsis: true, customRender: ({ record }) => { return `${record.ratio * 100}%`; @@ -610,7 +611,7 @@ export default { dataIndex: "isPublished", key: "isPublished", align: "center", - width:80, + width:100, ellipsis: true, customRender: ({ record }) => { return record.isPublished ? "已发布" : "未发布"; @@ -621,12 +622,13 @@ export default { dataIndex: "updateTime", key: "updateTime", align: "center", - width: 180, ellipsis: true, + width: 200, }, { title: "操作", align: "right", + fixed: "right", width: 200, slots: { customRender: "listData" }, }, diff --git a/src/views/growthpath/GrowthPath.vue b/src/views/growthpath/GrowthPath.vue index 0962d92f..370a1bbc 100644 --- a/src/views/growthpath/GrowthPath.vue +++ b/src/views/growthpath/GrowthPath.vue @@ -550,6 +550,7 @@ export default { key: "stdPositionName", align: "center", ellipsis: true, + width: 400, customRender: ({ record }) => { return record.stdPosition ? `${record.stdPositionName}(${record.stdPosition})` @@ -586,7 +587,7 @@ export default { title: "完成比例", dataIndex: "ratio", key: "ratio", - width: 90, + width:100, align: "center", ellipsis: true, customRender: ({ record }) => { @@ -598,7 +599,7 @@ export default { dataIndex: "isPublished", key: "isPublished", align: "center", - width: 80, + width:100, ellipsis: true, customRender: ({ record }) => { return record.isPublished ? "已发布" : "未发布"; @@ -609,12 +610,13 @@ export default { dataIndex: "updateTime", key: "updateTime", align: "center", - width: 180, + width: 200, ellipsis: true, }, { title: "操作", align: "right", + fixed: "right", width: 200, slots: { customRender: "listData" }, },