mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-19 07:46:46 +08:00
提交
This commit is contained in:
@@ -120,7 +120,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<template #action="{ record }">
|
||||
<!-- <template #action="{ record }">
|
||||
<template
|
||||
v-if="
|
||||
record.completionStatus == 2 && checkMenu('growthStudentMarkComplete')
|
||||
@@ -133,7 +133,7 @@
|
||||
<template v-else>
|
||||
<div>--</div>
|
||||
</template>
|
||||
</template>
|
||||
</template> -->
|
||||
</a-table>
|
||||
</div>
|
||||
</div>
|
||||
@@ -171,7 +171,7 @@ export default {
|
||||
title: "类型",
|
||||
dataIndex: "courseType",
|
||||
key: "courseType",
|
||||
width: 80,
|
||||
width: 120,
|
||||
align: "center",
|
||||
ellipsis: true,
|
||||
slots: { customRender: "courseType" },
|
||||
@@ -180,7 +180,6 @@ export default {
|
||||
title: "任务名称",
|
||||
dataIndex: "taskName",
|
||||
key: "taskName",
|
||||
width: 80,
|
||||
align: "center",
|
||||
ellipsis: true,
|
||||
},
|
||||
@@ -188,9 +187,9 @@ export default {
|
||||
title: "必修/选修",
|
||||
dataIndex: "taskType",
|
||||
key: "taskType",
|
||||
width: 30,
|
||||
align: "center",
|
||||
ellipsis: true,
|
||||
width: 120,
|
||||
customRender: ({ record: { taskType } }) =>
|
||||
({
|
||||
1: "必修",
|
||||
@@ -201,23 +200,23 @@ export default {
|
||||
title: "开始时间",
|
||||
dataIndex: "startTime",
|
||||
key: "startTime",
|
||||
width: 50,
|
||||
align: "center",
|
||||
width: 200,
|
||||
ellipsis: true,
|
||||
},
|
||||
{
|
||||
title: "完成时间",
|
||||
dataIndex: "finishTime",
|
||||
key: "finishTime",
|
||||
width: 50,
|
||||
align: "center",
|
||||
width: 200,
|
||||
},
|
||||
{
|
||||
title: "任务状态",
|
||||
dataIndex: "completionStatus",
|
||||
key: "completionStatus",
|
||||
width: 30,
|
||||
align: "center",
|
||||
width: 120,
|
||||
customRender: ({ record: { completionStatus } }) =>
|
||||
({
|
||||
2: "进行中",
|
||||
@@ -225,14 +224,14 @@ export default {
|
||||
0: "未开始",
|
||||
}[completionStatus]),
|
||||
},
|
||||
{
|
||||
title: "操作",
|
||||
dataIndex: "operation",
|
||||
key: "operation",
|
||||
width: 50,
|
||||
align: "center",
|
||||
slots: { customRender: "action" },
|
||||
},
|
||||
// {
|
||||
// title: "操作",
|
||||
// dataIndex: "operation",
|
||||
// key: "operation",
|
||||
// width: 50,
|
||||
// align: "center",
|
||||
// slots: { customRender: "action" },
|
||||
// },
|
||||
]);
|
||||
const formData = ref()
|
||||
const openDrawer = (row) => {
|
||||
|
||||
Reference in New Issue
Block a user