Merge branch 'compulsory_professional_skills' into compulsory_professional_skills_copy

This commit is contained in:
gengxin
2025-02-26 23:15:07 +08:00
3 changed files with 12 additions and 8 deletions

View File

@@ -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",

View File

@@ -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" },
},

View File

@@ -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" },
},