diff --git a/package.json b/package.json
index 2b265fab..cfdc9962 100644
--- a/package.json
+++ b/package.json
@@ -20,6 +20,7 @@
"dayjs": "^1.11.6",
"element-plus": "^2.2.17",
"element-resize-detector": "^1.2.4",
+ "exceljs": "^4.3.0",
"html2canvas": "^1.4.1",
"jquery": "^3.6.1",
"json-bigint": "^1.0.0",
diff --git a/src/api/indexStu.js b/src/api/indexStu.js
index feec5527..9889f8db 100644
--- a/src/api/indexStu.js
+++ b/src/api/indexStu.js
@@ -4,8 +4,7 @@ import http from "./config";
* 1
*/
//获取受众信息
-export const getAudienceInfoApi = (obj) =>
- http.post("/admin/orgStruct/getAudienceInfo", obj);
+// export const getAudienceInfoApi = (obj) => http.post("/admin/orgStruct/getAudienceInfo", obj);
//获取员工信息
export const getMemberInfoApi = (obj) =>
http.post("/admin/orgStruct/getMemberInfo", obj);
diff --git a/src/components/drawers/StuAdd.vue b/src/components/drawers/StuAdd.vue
index 236099bd..a7cba6cf 100644
--- a/src/components/drawers/StuAdd.vue
+++ b/src/components/drawers/StuAdd.vue
@@ -551,7 +551,7 @@ import { message } from "ant-design-vue";
// import { toDate } from "../../api/method";
// import * as api from '../../api/indexStu'
import {
- getAudienceInfoApi,
+ // getAudienceInfoApi,
getMemberInfoApi,
getOrgInfoApi,
} from "@/api/indexStu";
@@ -1239,20 +1239,20 @@ export default {
if (!state.nameaddd) {
return false;
}
- const item1 = await getAudienceInfoApi({
- pageNo: state.currentPage2,
- pageSize: state.pageSize2,
- keyWord: state.nameaddd,
- }).then((res) => {
- if (res.data.code === 200) return res.data.data.rows;
- });
- state.tabledata2 = traverseArr(item1, {
- key: "id",
- name: "audienceName",
- time: "createTime",
- number: "countNum",
- type: "typeName",
- });
+ // const item1 = await getAudienceInfoApi({
+ // pageNo: state.currentPage2,
+ // pageSize: state.pageSize2,
+ // keyWord: state.nameaddd,
+ // }).then((res) => {
+ // if (res.data.code === 200) return res.data.data.rows;
+ // });
+ // state.tabledata2 = traverseArr(item1, {
+ // key: "id",
+ // name: "audienceName",
+ // time: "createTime",
+ // number: "countNum",
+ // type: "typeName",
+ // });
};
getShouzong();
diff --git a/src/utils/commonExcel.js b/src/utils/commonExcel.js
new file mode 100644
index 00000000..49749ff1
--- /dev/null
+++ b/src/utils/commonExcel.js
@@ -0,0 +1,40 @@
+import Exceljs from 'exceljs'
+
+export const commonExport =(headers,datas,fileName) =>{
+
+ const workbook = new Exceljs.Workbook()
+ workbook.created = new Date();
+ const sheet = workbook.addWorksheet("Sheet1",{views: [{ySplit:1,state:'frozen'}]})
+ sheet.columns = headers
+ sheet.addRows(datas)
+ sheet.eachRow({ includeEmpty: true },(row,rowNumber)=>{
+ row.eachCell({ includeEmpty: true },(cell,colNumber)=>{
+ cell.alignment = { vertical: 'middle', horizontal: 'center'}
+ cell.border = {
+ top: {style:'thin'},
+ left: {style:'thin'},
+ bottom: {style:'thin'},
+ right: {style:'thin'}
+ }
+ })
+ })
+
+ downExcel(workbook,fileName)
+}
+
+export const downExcel = (wb,fileName)=>{
+ wb.xlsx.writeBuffer().then(buffer=>{
+ let blob = new Blob([buffer],{
+ type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ })
+ let ele = document.createElement('a')
+ ele.style.display = 'none'
+ ele.href = URL.createObjectURL(blob)
+ ele.download = fileName
+ document.body.appendChild(ele)
+ ele.click()
+ document.body.removeChild(ele)
+ URL.revokeObjectURL(ele.href)
+ wb = null
+ })
+}
\ No newline at end of file
diff --git a/src/views/courselibrary/CoursewareManage.vue b/src/views/courselibrary/CoursewareManage.vue
index 35253e3b..fcfcfde8 100644
--- a/src/views/courselibrary/CoursewareManage.vue
+++ b/src/views/courselibrary/CoursewareManage.vue
@@ -305,90 +305,34 @@
-
+
- handleEdit(record, String(record.courseform))"
- type="link"
- >编辑
- handleStart(record, String(record.courseform))"
- type="link"
- >开课
- handleLook(record, String(record.courseform))"
- type="link"
- >查看
- handleGuan22(record, String(record.courseform))"
- type="link"
- >管理
-
- 权限名单
- 查看权
- 管理权
+ handleEdit(record, String(record.courseform))" type="link">编辑
+ handleStart(record, String(record.courseform))" type="link">开课
+ handleLook(record, String(record.courseform))" type="link">查看
+ handleGuan22(record, String(record.courseform))" type="link">管理
+
+ 权限名单
+ 查看权
+ 管理权
-
- handleCopy(record, String(record.courseform))"
- type="link"
- >复制
- handleRejectExit(record, String(record.courseform))
- "
- type="link"
- >撤回
- handleStop(record, String(record.courseform))"
- type="link"
- >停用
- handleOpen(record, String(record.courseform))"
- type="link"
- >启用
- handleDelete(record, String(record.courseform))"
- type="link"
- danger
- >删除
+
+ handleCopy(record, String(record.courseform))" type="link">复制
+ handleRejectExit(record, String(record.courseform))" type="link">撤回
+ handleStop(record, String(record.courseform))" type="link">停用
+ handleOpen(record, String(record.courseform))" type="link">启用
+ handleDelete(record, String(record.courseform))" type="link" danger>删除
@@ -1162,42 +1106,9 @@
:isgetStudent="isgetStudent"
>
- {
- record.status = 0;
- auditStudent(record);
- }
- "
- type="link"
- >审核通过
- {
- record.status = 2;
- auditStudent(record);
- }
- "
- type="link"
- >拒绝
- {
- record.status = 1;
- auditStudent(record);
- }
- "
- type="link"
- >撤回
+ {record.status = 0;auditStudent(record);}" type="link">审核通过
+ {record.status = 2;auditStudent(record);}" type="link">拒绝
+ {record.status = 1;auditStudent(record);}" type="link">撤回
@@ -1579,6 +1490,9 @@ import { message } from "ant-design-vue";
import { useRouter, useRoute } from "vue-router";
import CommonStudent from "@/components/student/CommonStudent";
import OwnerTableModelStudent from "@/components/student/OwnerTableModelStudent";
+// import StuAdd from "../../components/drawers/StuAdd";
+// import OwnPower from "../../components/drawers/OwnPower.vue";
+// import Corpowerlist from "../../components/drawers/CorPowerlist.vue";
import addOnlineCourse from "../../components/Modals/addOnlineCourse.vue";
import ProjOwnerShip from "../../components/drawers/ProjectOwn";
@@ -1599,7 +1513,7 @@ import {
addStudent,
studentExport,
handleStudent,
- getMemberInfoApi,
+ getMemberInfoApi,
copyCoursePlan,
} from "@/api/indexCourse";
import {
@@ -1630,6 +1544,7 @@ import { useStore } from "vuex";
import DropDown from "@/components/common/DropDown";
import { checkPer } from "@/utils/utils";
import dayjs from "dayjs";
+import { commonExport } from '@/utils/commonExcel'
//列表表格
const columns1 = [
@@ -1656,8 +1571,8 @@ const columns1 = [
width: 130,
dataIndex: "contentTxt",
ellipsis: true,
- key: "1",
- align: "center",
+ key: "contentTxt",
+ align: "center",
},
{
title: "课程形式",
@@ -2211,10 +2126,10 @@ export default defineComponent({
setup() {
const CourseModalRef = ref(null);
const store = useStore();
-
+
const state = reactive({
tableLoading: false,
- //新加
+ //新加
stuColumns: [
{
title: "岗位",
@@ -2636,7 +2551,7 @@ export default defineComponent({
assessment: {},
assessmentId: null,
workName: null,
- EditTestId: null,
+ EditTestId: 0,
testName: null,
assessmentName: "",
assessmentVisible: false,
@@ -3018,7 +2933,7 @@ export default defineComponent({
console.log(res.data.data);
state.tableDataTotal1 = total;
for (let i = 0; i < rows.length; i++) {
- rows[i].num = i + 1 + (state.currentPage1 - 1) * 10;
+ rows[i].num = i + 1 + (state.currentPage1 - 1) * 10;
}
const datas = traverseArr(
rows,
@@ -3044,7 +2959,7 @@ export default defineComponent({
datas.forEach((itm) => {
itm.pageNo = pageNo;
- itm.contentTxt =
+ itm.contentTxt =
findClassFullName(sysTypeOptions.value, itm.sysTypeId) || "-";
});
state.tableData1 = datas;
@@ -3055,17 +2970,16 @@ export default defineComponent({
function findClassFullName(list, classify, name = "") {
return (
(list &&
- list.length &&
- list
- .map((e) =>
- classify == e.dictCode
+ list.length > 0 &&
+ list.map((e) =>
+ classify == e.code
? name
- ? name + "-" + e.dictName
- : e.dictName
+ ? name + "-" + e.name
+ : e.name
: findClassFullName(
e.children,
classify,
- name ? name + "-" + e.dictName : e.dictName
+ name ? name + "-" + e.name : e.name
)
)
.filter((name) => name)
@@ -3241,7 +3155,7 @@ export default defineComponent({
console.log(e);
};
const logT = (e) => {
- state.EditTestId = null;
+ state.EditTestId = 0;
console.log(e);
};
const removePG = () => {
@@ -3419,14 +3333,16 @@ export default defineComponent({
if (state.selectTime) {
// beginTime = parseInt(new Date(state.selectTime[0].$d).getTime() / 1000);
// endTime = parseInt(new Date(state.selectTime[1].$d).getTime() / 1000);
- beginTime = toDate(
- new Date(state.selectTime[0].$d).getTime() / 1000,
- "Y-M-D h:m:s"
- );
- endTime = toDate(
- new Date(state.selectTime[1].$d).getTime() / 1000,
- "Y-M-D h:m:s"
- );
+ beginTime = dayjs(state.selectTime[0]).format('YYYY-MM-DD HH:mm:ss')
+ // toDate(
+ // new Date(state.selectTime[0].$d).getTime() / 1000,
+ // "Y-M-D h:m:s"
+ // );
+ endTime = dayjs(state.selectTime[1]).format('YYYY-MM-DD HH:mm:ss')
+ // toDate(
+ // new Date(state.selectTime[1].$d).getTime() / 1000,
+ // "Y-M-D h:m:s"
+ // );
}
let obj = {
pageNo: state.currentPage222,
@@ -3695,7 +3611,7 @@ export default defineComponent({
state.xjkkinputV4 = null;
state.checked1 = false;
state.checked4 = false;
- state.EditTestId = null;
+ state.EditTestId = 0;
state.assessmentId = null;
state.assessmentName = "";
state.EditWorkId = null;
@@ -3705,18 +3621,24 @@ export default defineComponent({
//保存开课
const handleSureStu = () => {
+ let startTime,
+ endTime = 0;
+ if (state.xjkkinputV3) {
+ startTime = dayjs(state.xjkkinputV3[0]).format('YYYY-MM-DD HH:mm:ss') //parseInt(state.xjkkinputV3[0].$d.getTime() / 1000);
+ endTime = dayjs(state.xjkkinputV3[1]).format('YYYY-MM-DD HH:mm:ss') //parseInt(state.xjkkinputV3[1].$d.getTime() / 1000);
+ }
let t = state.signCom ? "1," : "0,";
let p = state.comLeave ? "1" : "0";
let type = t.concat(p);
const postData = {
offcourseId: state.offcourseId,
- offcoursePlanId: state.offcoursePlanId, //开课ID,不传代表新增
+ id: state.offcoursePlanId, //开课ID,不传代表新增
address: state.xjkkinputV2,
applyFlag: state.checked1 ? 1 : 0,
attach: state.attach,
- beginTime: dayjs(state.xjkkinputV3[0]).format("YYYY-MM-DD HH:mm:ss"),
- endTime: dayjs(state.xjkkinputV3[1]).format("YYYY-MM-DD HH:mm:ss"),
+ beginTime: startTime,
completeType: type,
+ endTime: endTime,
evalFlag: Number(state.assessmentId) > 0 && state.checked4 ? 1 : 0,
evaluateId: Number(state.assessmentId),
testId: state.EditTestId,
@@ -3743,9 +3665,9 @@ export default defineComponent({
}
state.addLoading = true;
editPlan(postData).then(() => {
- getTableDate3();
- handleCancelStu();
- rest();
+ getTableDate3();
+ handleCancelStu();
+ rest();
state.addLoading = false;
});
};
@@ -3753,7 +3675,7 @@ export default defineComponent({
//编辑开课
const handelEditStu = async (item) => {
state.offcourseId = item.offcourseId;
- state.offcoursePlanId = item.id;
+ state.offcoursePlanId = item.id;
if (item.evaluateId) {
api
@@ -3802,7 +3724,7 @@ export default defineComponent({
item.completeType.split(",")[1] == "1" ? true : false),
(state.checked4 = item.evalFlag === 1 ? true : false);
state.assessmentId = String(item.evaluateId);
- state.EditTestId = String(item.testId);
+ state.EditTestId = Number(item.testId);
state.EditWorkId = String(item.homeWorkId);
state.xjkkinputV1 = item.name;
if (item.signFlag === 1) {
@@ -3810,14 +3732,14 @@ export default defineComponent({
state.xjkkradioV1 = 0;
}
/*
- if (item.signWordFlag === 1) {
- //签到是否需要口令:1是0否
- state.xjkkradioV1 = 1;
- }
- if (item.signFlag === 0 && item.signWordFlag === 0) {
- state.xjkkradioV1 = "";
- }
- */
+ if (item.signWordFlag === 1) {
+ //签到是否需要口令:1是0否
+ state.xjkkradioV1 = 1;
+ }
+ if (item.signFlag === 0 && item.signWordFlag === 0) {
+ state.xjkkradioV1 = "";
+ }
+ */
state.member = { value: item.teacherId, name: item.teacher };
state.cstm_hs = true;
@@ -3910,7 +3832,7 @@ export default defineComponent({
handle({
offcourseId: state.offcourseId,
type: 0,
- }).then((res) => {
+ }).then((res) => {
if (res.data.code === 200) {
getTableDate();
}
@@ -4002,12 +3924,9 @@ export default defineComponent({
//确认复制课程 操作
const handleDeleteExit = async () => {
state.addLoading = true;
- console.log(
- "开课的复制删除面授id及开课id",
- state.offcourseId,
- state.offcoursePlanId
- );
+
if (state.del_hs) {
+ console.log(11111111);
if (state.offcourseId && state.offcoursePlanId && state.studentId) {
console.log(111111);
handleStudent({
@@ -4049,15 +3968,13 @@ export default defineComponent({
if (state.copy_hs) {
console.log(2222222);
if (state.offcourseId && state.offcoursePlanId) {
- copyCoursePlan({ offcoursePlanId: state.offcoursePlanId }).then(
- () => {
- message.destroy();
- message.success("复制成功");
- getTableDate3();
- delete_exit1();
- rest();
- }
- );
+ copyCoursePlan({offcoursePlanId:state.offcoursePlanId}).then(() => {
+ message.destroy();
+ message.success("复制成功");
+ getTableDate3();
+ delete_exit1();
+ rest();
+ });
} else if (state.offcourseId) {
console.log(87887);
// 拿数据
@@ -4136,37 +4053,81 @@ export default defineComponent({
endTime = parseInt(new Date(state.projectTime[1].$d).getTime() / 1000);
}
- window.open(
- `${process.env.VUE_APP_BASE_API}/admin/offcourse/export?pageNo=${
- state.currentPage1
- }&pageSize=${state.pageSize1}&auditStatus=${
- state.auditStatus ? state.auditStatus : ""
- }&sysTypeId=${state.sysTypeId ? state.sysTypeId : ""}&projectName=${
- state.projectName ? state.projectName : ""
- }&name=${state.name ? state.name : ""}&createName=${
- state.createName ? state.createName : ""
- }&endTime=${endTime ? endTime : ""}&beginTime=${
- startTime ? startTime : ""
- }&type=3`
- );
- {
- /* exportP({
- pageNo: state.currentPage1,
- pageSize: state.pageSize1,
+ list({
+ pageNo: 1,
+ pageSize: 100000,
auditStatus: state.auditStatus,
- categoryId: state.categoryId,
+ // categoryId: state.categoryId,
+ sysTypeId: state.sysTypeId,
projectName: state.projectName,
name: state.name,
createName: state.createName,
endTime: endTime,
beginTime: startTime,
- }).then((res) => {
- if (res.data.code === 200) {
- message.success("导出成功");
- }
- }); */
- }
+ }).then(res=>{
+ let list = res.data.data.rows.map(s=>{
+ s.contentTxt = findClassFullName(sysTypeOptions.value, s.sysTypeId) || "-";
+ s.typeName = '面授'
+ s.publishStatusText = s.publishStatus === 0?'未发布':'已发布'
+ s.statusText = s.status === 0?'否':'是'
+ s.auditStatusText = s.auditStatus === 0?'未提交': s.auditStatus === 1?'待审核':s.auditStatus === 2?'已审核':s.auditStatus === -1?"审核未通过":''
+ return s
+ })
+ console.log(list)
+ let heads = [
+ { header: '名称', key: 'name', width: 18 },
+ { header: '类型', key: 'typeName', width: 10 },
+ { header: '归属路径图', key: 'routerName', width: 13 },
+ { header: '归属项目', key: 'projectName', width: 13 },
+ { header: '内容分类', key: 'contentTxt', width: 20 },
+ // { header: '一级分类', key: 'firstLevelCategory', width: 10 },
+ // { header: '二级分类', key: 'secondLevelCategory', width: 10 },
+ // { header: '三级分类', key: 'thirdLevelCategory', width: 10 },
+ { header: '开课次数', key: 'planCnt', width: 10 },
+ { header: '学习人数', key: 'studentCnt', width: 10 },
+ { header: '评分', key: 'score', width: 10 },
+ { header: '状态', key: 'auditStatusText', width: 20 },
+ { header: '是否发布', key: 'publishStatusText', width: 10 },
+ { header: '创建人', key: 'createName', width: 10 },
+ { header: '创建时间', key: 'createTime', width: 22 },
+ { header: '上线时间', key: 'publishTime', width: 22 },
+ { header: '是否停用', key: 'statusText', width: 10 },
+ ]
+ commonExport(heads,list,"课程导出")
+ })
+
+ // window.open(
+ // `${process.env.VUE_APP_BASE_API}/admin/offcourse/export?pageNo=${
+ // state.currentPage1
+ // }&pageSize=${state.pageSize1}&auditStatus=${
+ // state.auditStatus ? state.auditStatus : ""
+ // }&sysTypeId=${state.sysTypeId ? state.sysTypeId : ""}&projectName=${
+ // state.projectName ? state.projectName : ""
+ // }&name=${state.name ? state.name : ""}&createName=${
+ // state.createName ? state.createName : ""
+ // }&endTime=${endTime ? endTime : ""}&beginTime=${
+ // startTime ? startTime : ""
+ // }&type=3`
+ // );
+
+ // {
+ // /* exportP({
+ // pageNo: state.currentPage1,
+ // pageSize: state.pageSize1,
+ // auditStatus: state.auditStatus,
+ // categoryId: state.categoryId,
+ // projectName: state.projectName,
+ // name: state.name,
+ // createName: state.createName,
+ // endTime: endTime,
+ // beginTime: startTime,
+ // }).then((res) => {
+ // if (res.data.code === 200) {
+ // message.success("导出成功");
+ // }
+ // }); */
+ // }
};
//获取教师
const getTea = async () => {
@@ -4217,7 +4178,7 @@ export default defineComponent({
if (type === "1") {
return;
}
- console.log("编辑面授课信息", itm, type);
+ // console.log(itm)
state.offcourseId = itm.id;
const item = await detail({
@@ -4330,7 +4291,7 @@ export default defineComponent({
state.copy_hs = true;
};
const handleCopyP = async (itm) => {
- console.log("开课复制", itm);
+ console.log(itm);
state.offcourseId = itm.offcourseId;
state.offcoursePlanId = itm.id;
@@ -4366,8 +4327,7 @@ export default defineComponent({
});
};
const handleStart = (item, type) => {
- console.log("点击开课item", item);
- // console.log(item);
+ console.log(item);
if (type === "1") {
return;
}
@@ -4465,7 +4425,6 @@ export default defineComponent({
// 管理开课
const handleGuan22 = (item) => {
- console.log("点击管理信息", item);
if (String(item.courseform) === "1") {
return;
}
@@ -4544,15 +4503,15 @@ export default defineComponent({
console.log("ft_eidt", state.ft_eidt);
// handlePush("review");
/*
- if (state.ft_eidt) {
- //编辑面授课
- submitReview();
- }
- if (!state.ft_eidt) {
- //shouke
- handlePush("review");
- }
- */
+ if (state.ft_eidt) {
+ //编辑面授课
+ submitReview();
+ }
+ if (!state.ft_eidt) {
+ //shouke
+ handlePush("review");
+ }
+ */
};
const submitReview = (id) => {
state.addLoading = true;
@@ -4702,16 +4661,13 @@ export default defineComponent({
//二维码
const qrcodeVisible = (record, type) => {
- console.log("点击签到信息", record);
state.codevisible = true;
state.codeInfo = {
title: type == 1 ? "【课程】二维码" : "【签到】二维码",
name: record.name ? record.name : "",
url:
type == 1
- ? window.location.protocol +
- process.env.VUE_APP_COURSE_STUDY +
- record.offcourseId
+ ? window.location.protocol + process.env.VUE_APP_COURSE_STUDY + record.offcourseId
: process.env.VUE_APP_BASE_API +
`/admin/student/studentSign?taskId=${
record.id
diff --git a/src/views/courselibrary/CoursewareManage_Old.vue b/src/views/courselibrary/CoursewareManage_Old.vue
index 9ec39903..4b625725 100644
--- a/src/views/courselibrary/CoursewareManage_Old.vue
+++ b/src/views/courselibrary/CoursewareManage_Old.vue
@@ -4803,8 +4803,7 @@ export default defineComponent({
let type = t.concat(p);
const postData = {
offcourseId: state.offcourseId,
- offcoursePlanId: state.offcoursePlanId, //开课ID,不传代表新增
-
+ id: state.offcoursePlanId, //开课ID,不传代表新增
address: state.xjkkinputV2,
applyFlag: state.checked1 ? 1 : 0,
attach: state.filesList.length ? state.filesList.join(",") : "",
diff --git a/src/views/courselibrary/courseModal.vue b/src/views/courselibrary/courseModal.vue
index 5b17995e..dac4f910 100644
--- a/src/views/courselibrary/courseModal.vue
+++ b/src/views/courselibrary/courseModal.vue
@@ -1,153 +1,93 @@
-
-
-
-
-
- 审核意见:
- {{ auditDescription }}
-
-
-
-
课程信息
-
-
-
-
-
-

-
-
课程名称
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1、课程名称统一不加书名号。
- 2、项目名称、属地等信息如需体现在课程名称中,请放在课程名称信息
- 之后,如“时间管理(GROW180项目)”或“时间管理(B*)”确保首先
- 看到的是课程内容主题。
- 3、同一课程如先后有多个版本,原则上仅开放最新版本,旧版本应停用
- 版本如必须以年份标明,请以“沟通技巧(2022年)”的方式呈现。
-
-
-
-
-
-
-

-
-
封面图
-
-
-
-
![]()
-
-
+
+ 审核意见:
+ {{ auditDescription }}
+
+
+
+
课程信息
+
+
+
+
+
+

+
+
课程名称
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1、课程名称统一不加书名号。
+ 2、项目名称、属地等信息如需体现在课程名称中,请放在课程名称信息
+ 之后,如“时间管理(GROW180项目)”或“时间管理(B*)”确保首先
+ 看到的是课程内容主题。
+ 3、同一课程如先后有多个版本,原则上仅开放最新版本,旧版本应停用
+ 版本如必须以年份标明,请以“沟通技巧(2022年)”的方式呈现。
+
+
+
+
+
+
+

+
+
封面图
+
+
+
+
![]()
+
+
-
![avatar]()
-
-
- 高宽比为16:9 (如:800*450) png或jpg图片
-
-
-
-
-
-
-
-

-
-
目标人群
-
-
-
-
-
-
-

-
-
内容分类
-
-
-
-
-
+
![avatar]()
+
+
+ 高宽比为16:9 (如:800*450) png或jpg图片
+
+
+
+
+
+
+
+

+
+
目标人群
+
+
+
+
+
+
+

+
+
内容分类
+
+
+
+
+
-
+
-
-
+
+
-
-
-
-
-
-

-
-
课程简介
-
-
-
-
-
-
- {{ qdms_inputV6.length }}/150
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+

+
+
课程简介
+
+
+
+
+
+
+ {{ qdms_inputV6.length }}/150
+
+
+
+
+
+
+
+
+
+
+
+
+
+