--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: "状态", title: "状态",
dataIndex: "status", dataIndex: "finishStatus",
key: "status", key: "finishStatus",
width: 80, width: 80,
align: "center", align: "center",
ellipsis: true, ellipsis: true,
customRender: ({ record: { status } }) => status ? "已完成" : "未开始", customRender: ({ record: { finishStatus } }) => finishStatus ? "已完成" : "未开始",
}, },
{ {
title: "操作", title: "操作",