{{ formParam.status == 0 ? '未开课' : formParam.status == 1
+ {{ formParam.courseStatus == 0 ? '未开课' : formParam.courseStatus == 1
? '已开课' : '' }}
{{ formParam.courseTypeName }}
{{ formParam.teachingDate }}
@@ -340,7 +340,7 @@ export default {
teachingDate: undefined, //选择时间
tableDataTotal: -1,//table列表总条数
formParam: {
- status: 1,
+ courseStatus: 1,
entryType: 1,
teaching: null,
teachingDate: null,
@@ -354,7 +354,7 @@ export default {
teacherName: null,
name: null,
address: null,
- status: null,
+ courseStatus: null,
beginTime: null,
endTime: null,
entryType: null,
@@ -376,7 +376,7 @@ export default {
name: [{ required: true, message: '', log: '讲师不能为空' }],
courseTypeId: [{ required: true, message: '', log: '内容分类不能为空' }],
courseName: [{ required: true, message: '', log: '课程名称不能为空' }],
- status: [{ required: true, message: '', log: '讲开课状态不能为空' }],
+ courseStatus: [{ required: true, message: '', log: '讲开课状态不能为空' }],
teaching: [{ required: true, message: '', log: '授课时长不能为空' }],
teachingDate: [{ required: true, message: '', log: '授课日期不能为空' }],
@@ -482,18 +482,18 @@ export default {
// },
{
title: '开课状态 ',
- dataIndex: 'status',
- key: 'status',
+ dataIndex: 'courseStatus',
+ key: 'courseStatus',
elipsis: true, align: "center",
width: 120,
customRender: (value) => {
return (
- {value.record.status == 0 || value.record.status == 1
+ {value.record.courseStatus == 0 || value.record.courseStatus == 1
? {
"0": "未开课",
"1": "已开课",
- }[value.record.status + ""] || ""
+ }[value.record.courseStatus + ""] || ""
: "-"}
)
@@ -589,7 +589,7 @@ export default {
name: null,
manager: null,
entryType: null,
- status: 1,
+ courseStatus: null,
entryType: null,
systemId: null,
endTime: null,
@@ -720,7 +720,7 @@ export default {
//清空数据
const cancel = () => {
state.formParam = {
- status: 1,
+ courseStatus: 1,
recordType: 2,
teacherName: null,
mobile: null,
@@ -741,7 +741,7 @@ export default {
else if (state.moreid == 2) {
state.moreid = 1
state.searchParam.type = null
- state.searchParam.status = null
+ state.searchParam.courseStatus = null
state.searchParam.id = null
state.searchParam.entryType = null
}
@@ -794,7 +794,7 @@ export default {
&beginTime=${state.searchParam.beginTime ? state.searchParam.beginTime : ""}
&endTime=${state.searchParam.endTime ? state.searchParam.endTime : ""}
&courseTypeId=${state.searchParam.courseTypeId ? state.searchParam.courseTypeId : ""}
- &status=${state.searchParam.status ? state.searchParam.status : ""}`
+ &courseStatus=${state.searchParam.courseStatus ? state.searchParam.courseStatus : ""}`
);
}
const clearstudysNumber = () => {
diff --git a/src/views/lecturer/InsideTeaching.vue b/src/views/lecturer/InsideTeaching.vue
index 204a652a..e3cd8c46 100644
--- a/src/views/lecturer/InsideTeaching.vue
+++ b/src/views/lecturer/InsideTeaching.vue
@@ -806,7 +806,8 @@ export default {
endTime: null,
beginTime: null,
studysranges: [],
- score: null
+ score: null,
+ status:null,
};
getTableDate();
};
From 07715dfd100f7b3990ab213a8be82f95ce705a86 Mon Sep 17 00:00:00 2001
From: wangxuemei <283912718@qq.com>
Date: Tue, 5 Nov 2024 17:05:16 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E8=AE=B2=E5=B8=88=E7=BB=86=E8=8A=82?=
=?UTF-8?q?=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/Teaching.js | 2 +-
src/views/lecturer/ExternalTeaching.vue | 16 ++++++++--------
src/views/lecturer/InsideLecturer.vue | 2 +-
src/views/lecturer/InsideTeaching.vue | 17 ++++++++---------
4 files changed, 18 insertions(+), 19 deletions(-)
diff --git a/src/api/Teaching.js b/src/api/Teaching.js
index cd56100e..60c1ae24 100644
--- a/src/api/Teaching.js
+++ b/src/api/Teaching.js
@@ -3,7 +3,7 @@ import {getCookieForName} from "@/api/method";
//列表查询授课记录
export const getNewInTeacherCourseList = (obj) => http.get('/admin/teacherRecord/list', {params: obj})
//新增授课记录
-export const insertInTeacherCourse = (obj) => http.post('/admin/teacherRecord/addTeacherRecord', obj)
+export const insertInTeacherCourse = (obj) => http.post('/admin/teacher/addTeacherRecord', obj)
//删除讲师授课记录
export const deleteInTeacherCourse= (obj) => http.post(`/admin/teacherRecord/delById?id=${obj}`)
//修改讲师授课记录
diff --git a/src/views/lecturer/ExternalTeaching.vue b/src/views/lecturer/ExternalTeaching.vue
index f7b74471..15c3a1e8 100644
--- a/src/views/lecturer/ExternalTeaching.vue
+++ b/src/views/lecturer/ExternalTeaching.vue
@@ -9,7 +9,7 @@
-