--fix bug

This commit is contained in:
yuping
2023-03-30 15:16:59 +08:00
parent 898d735411
commit 1760b7963a

View File

@@ -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: "操作",