mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-19 15:56:47 +08:00
feat:修改评估状态
This commit is contained in:
@@ -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: "评分",
|
||||||
@@ -6877,7 +6881,7 @@ export default defineComponent({
|
|||||||
background: #4ea6ff;
|
background: #4ea6ff;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
border: 1px solid rgba(64, 158, 255, 1);
|
border: 1px solid rgba(64, 158, 255, 1);
|
||||||
color:#fff;
|
color: #fff;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|||||||
Reference in New Issue
Block a user