仅内网可见-管理员端 调试

This commit is contained in:
670788339
2025-07-23 17:10:19 +08:00
parent 5d0d64abbf
commit 2ee3daedf6
2 changed files with 21 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
/** /**
* 课程的操作,课程的添加,修改,列表查询,课程的审核发布等操作。 * 课程的操作,课程的添加,修改,列表查询,课程的审核发布等操作。
* 针对于管理员,教师的功能 * 针对于管理员,教师的功能
* *
**/ **/
import ajax from '@/utils/xajax.js' import ajax from '@/utils/xajax.js'
@@ -170,7 +170,9 @@ const updateContentOrders = function(cid,items) {
const detail = function(id) { const detail = function(id) {
return ajax.get('/xboe/m/course/manage/detail?id=' + id); return ajax.get('/xboe/m/course/manage/detail?id=' + id);
} }
const getDictIds = function(pid,type) {
return request.get(`/xboe/m/course/manage/getDictIds?pid=${pid}&type=${type}`);
}
/** /**
* 更新内容的名称 * 更新内容的名称
* @param {Object} data * @param {Object} data
@@ -274,7 +276,7 @@ const countWaitAudit = function() {
} }
/** /**
* [已用courseAudit中的hrbpAuditList替换] * [已用courseAudit中的hrbpAuditList替换]
* 当前用户需要审核的课程列表 * 当前用户需要审核的课程列表
* @param {Object} query 同pageList * @param {Object} query 同pageList
*/ */
@@ -283,9 +285,9 @@ const auditList = function(query) {
} }
/** /**
* 【已移到courseAudit中】 * 【已移到courseAudit中】
* 教师需要审核的课程列表 * 教师需要审核的课程列表
*/ */
const teacherAuditList = function(query) { const teacherAuditList = function(query) {
return ajax.post('/xboe/m/course/audit/teacher-course', query); return ajax.post('/xboe/m/course/audit/teacher-course', query);
@@ -446,6 +448,7 @@ export default {
findUpdateLogs, findUpdateLogs,
getUpdateLog, getUpdateLog,
detail, detail,
getDictIds,
saveContent, saveContent,
pageList, pageList,
setEnabled, setEnabled,

View File

@@ -571,6 +571,7 @@ export default {
} }
}, },
mounted() { mounted() {
this.getDictIds();
let extendFlag=this.$route.query.f; //是否是管理端过来的 let extendFlag=this.$route.query.f; //是否是管理端过来的
this.extendRefId=this.$route.query.refId; this.extendRefId=this.$route.query.refId;
this.extendRefType=this.$route.query.refType; this.extendRefType=this.$route.query.refType;
@@ -917,6 +918,17 @@ export default {
this.courseCoverurl = ''; this.courseCoverurl = '';
this.courseInfo.coverImg = ''; this.courseInfo.coverImg = '';
}, },
//获取字典信息
getDictIds() {
console.log("--- 获取字典信息 1 = ",this.dicts)
const { result, status } = apiCourse.getDictIds(637,1);
console.log("--- 获取字典信息 2 result= ",result)
if (status === 200) {
console.log("--- 获取字典信息 3 = ",this.dicts)
this.dicts = result.dicts;
console.log("--- 获取字典信息 4 = ",this.dicts)
}
},
//获取课程信息 //获取课程信息
async getDetail(id) { async getDetail(id) {
this.curCourseId = id; this.curCourseId = id;