mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-12 12:26:47 +08:00
--fix bug
This commit is contained in:
@@ -238,12 +238,12 @@ const columns = ref([
|
||||
// },
|
||||
{
|
||||
title: "状态",
|
||||
dataIndex: "status",
|
||||
key: "status",
|
||||
dataIndex: "finishStatus",
|
||||
key: "finishStatus",
|
||||
width: 80,
|
||||
align: "center",
|
||||
ellipsis: true,
|
||||
customRender: ({ record: { status } }) => status ? "已完成" : "未开始",
|
||||
customRender: ({ record: { finishStatus } }) => finishStatus ? "已完成" : "未开始",
|
||||
},
|
||||
{
|
||||
title: "操作",
|
||||
|
||||
Reference in New Issue
Block a user