feat:修改评估状态

This commit is contained in:
lixg
2023-03-04 20:28:10 +08:00
parent 965010ace1
commit f73a86b777

View File

@@ -3465,7 +3465,7 @@ export default defineComponent({
const options4CurId = ref(""); const options4CurId = ref("");
const options4CurName = ref("张"); const options4CurName = ref("张");
const of_hShow = () => { const of_hShow = () => {
state.offcourseId = ''; state.offcourseId = "";
getTea(); getTea();
if (state.of_hs == false) { if (state.of_hs == false) {
state.of_hs = true; state.of_hs = true;
@@ -3839,7 +3839,11 @@ export default defineComponent({
key: "8", key: "8",
align: "center", align: "center",
customRender: ({ record }) => customRender: ({ record }) =>
record.assessmentStatus ? "已评估" : "未评估", itm.courseScore === -1
? "-"
: record.assessmentStatus
? "已评估"
: "未评估",
}, },
{ {
title: "评分", title: "评分",