课程类型

This commit is contained in:
gengxin
2025-02-22 17:49:53 +08:00
parent bb60b214db
commit 26c33caec4
2 changed files with 6 additions and 3 deletions

View File

@@ -328,7 +328,7 @@
<a-descriptions bordered :column="2" :contentStyle="rowCenter" :labelStyle="{'width':'160px'}">
<a-descriptions-item label="讲师名称">{{ formParam.teacherName ||'-'}}</a-descriptions-item>
<a-descriptions-item label="手机号码">{{ formParam.mobile ||'-'}}</a-descriptions-item>
<a-descriptions-item label="课程类型">{{ formParam.type == 0 ? '在线课' : formParam.type == 1 ? '面授课' : formParam.type == 2 ? '手动录入' : '-'
<a-descriptions-item label="课程类型">{{ formParam.type == 0 ? '在线课' : formParam.type == 1 ? '面授课' : formParam.type == 2 ? '训练班' : formParam.type == 5 ? '手动录入' : '-'
}}</a-descriptions-item>
<a-descriptions-item label="课程名称">{{ formParam.courseName ||'-'}}</a-descriptions-item>
<a-descriptions-item label="开课状态">{{ formParam.courseStatus == 0 ? '未开课' : formParam.courseStatus == 1
@@ -591,7 +591,8 @@ export default {
? {
"0": "在线课",
"1": "面授课",
"2": "手动录入",
"2": "训练班",
"5": "手动录入",
}[value.record.type + ""]
: "-"}
</div>

View File

@@ -723,7 +723,8 @@ export default {
{ value: '', label: "全部" },
{ value: '0', label: "在线课" },
{ value: '1', label: "面授课" },
{ value: '2', label: "手动录入" },
{ value: '2', label: "训练班" },
{ value: '5', label: "手动录入" },
])
const scoreList = ref([
{ value: '', label: "全部" },
@@ -821,6 +822,7 @@ export default {
? {
"0": "在线课",
"1": "面授课",
"2": "训练班",
"5": "手动录入",
}[value.record.type + ""]
: "-"}