|
@@ -105,7 +105,7 @@
|
|
|
<div style="width: 100%; height: 100%; overflow: auto" ref="stepBox">
|
|
|
<div class="courseTop">
|
|
|
<div class="stepsNav">
|
|
|
- <h3 class="info_title" v-if="steps == 1">课程内容填写</h3>
|
|
|
+ <h3 class="info_title" v-if="steps == 1">填写基本信息</h3>
|
|
|
<h3 class="info_title" v-if="steps == 2">请选择课程框架</h3>
|
|
|
<h3 class="info_title" v-if="steps == 3">上传课程内容</h3>
|
|
|
<h3 class="info_title" v-if="steps == 4">上传课程</h3>
|
|
@@ -3032,9 +3032,12 @@
|
|
|
<el-input
|
|
|
placeholder="搜索班级名称"
|
|
|
v-model="classSearch"
|
|
|
- @keyup.enter.native="getClass()"
|
|
|
+ @input="getClass()"
|
|
|
></el-input>
|
|
|
- <div class="search_img" @click="getClass()">
|
|
|
+ <!-- @click="getClass()"
|
|
|
+ @keyup.enter.native="getClass()"
|
|
|
+ -->
|
|
|
+ <div class="search_img" >
|
|
|
<img src="../../assets/icon/search.png" alt />
|
|
|
</div>
|
|
|
</div>
|
|
@@ -5466,6 +5469,7 @@ export default {
|
|
|
_this.unitJson[unitIndex].chapterInfo[0].taskJson[
|
|
|
itemTaskIndex
|
|
|
].isAllSize = (file.size / 1024 / 1024).toFixed(2);
|
|
|
+ _this.$forceUpdate();
|
|
|
if (file) {
|
|
|
var params = {
|
|
|
Key:
|
|
@@ -5494,7 +5498,7 @@ export default {
|
|
|
_this.unitJson[unitIndex].chapterInfo[0].taskJson[
|
|
|
itemTaskIndex
|
|
|
].isFinishSize = (evt.loaded / 1024 / 1024).toFixed(2);
|
|
|
- this.$forceUpdate();
|
|
|
+ _this.$forceUpdate();
|
|
|
})
|
|
|
.send(function (err, data) {
|
|
|
// loading.close();
|
|
@@ -5626,6 +5630,7 @@ export default {
|
|
|
_this.unitJson[unitIndex].chapterInfo[0].taskJson[
|
|
|
itemTaskIndex
|
|
|
].isAllSize = (file.size / 1024 / 1024).toFixed(2);
|
|
|
+ _this.$forceUpdate();
|
|
|
if (file) {
|
|
|
var params = {
|
|
|
Key:
|
|
@@ -5654,7 +5659,7 @@ export default {
|
|
|
_this.unitJson[unitIndex].chapterInfo[0].taskJson[
|
|
|
itemTaskIndex
|
|
|
].isFinishSize = (evt.loaded / 1024 / 1024).toFixed(2);
|
|
|
- this.$forceUpdate();
|
|
|
+ _this.$forceUpdate();
|
|
|
})
|
|
|
.send(function (err, data) {
|
|
|
// loading.close();
|
|
@@ -7664,9 +7669,10 @@ export default {
|
|
|
if (!this.cid) {
|
|
|
this.courseTypeId[res.data[0][i].id] = [];
|
|
|
}
|
|
|
- if (!this.CourseTypeJson[res.data[0][i].id]) {
|
|
|
- this.CourseTypeJson[res.data[0][i].id] = [];
|
|
|
- }
|
|
|
+ // if (!this.CourseTypeJson[res.data[0][i].id]) {
|
|
|
+ // }
|
|
|
+ this.CourseTypeJson[res.data[0][i].id] = [];
|
|
|
+
|
|
|
if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
|
|
|
if (res.data[0][i].name == "栏目") {
|
|
|
this.CourseType[0][i].name = "主题";
|