|
@@ -21,7 +21,7 @@
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<el-form-item label="选择课程" v-if="msgForm.draftStrategy==1" >
|
|
<el-form-item label="选择课程" v-if="msgForm.draftStrategy==1" >
|
|
|
- <el-select v-model="msgForm.courseId" placeholder="请选择课程" style=" margin-right: 10px;" size="mini" @change="courseChange()">
|
|
|
|
|
|
|
+ <el-select v-model="msgForm.courseId" placeholder="请选择课程" style=" margin-right: 10px;" size="mini" filterable @change="courseChange()">
|
|
|
<el-option
|
|
<el-option
|
|
|
v-for="dict in courseList"
|
|
v-for="dict in courseList"
|
|
|
:key="dict.dictValue"
|
|
:key="dict.dictValue"
|
|
@@ -29,7 +29,7 @@
|
|
|
:value="parseInt(dict.dictValue)"
|
|
:value="parseInt(dict.dictValue)"
|
|
|
/>
|
|
/>
|
|
|
</el-select>
|
|
</el-select>
|
|
|
- <el-select v-model="msgForm.videoId" placeholder="请选择小节" size="mini" style=" margin-right: 10px;" @change="videoIdChange()" >
|
|
|
|
|
|
|
+ <el-select v-model="msgForm.videoId" placeholder="请选择小节" size="mini" style=" margin-right: 10px;" filterable @change="videoIdChange()" >
|
|
|
<el-option
|
|
<el-option
|
|
|
v-for="dict in videoList"
|
|
v-for="dict in videoList"
|
|
|
:key="dict.dictValue"
|
|
:key="dict.dictValue"
|
|
@@ -876,7 +876,7 @@ export default {
|
|
|
this.$set(this.setting[i], 'linkTitle', selectedCourse.dictLabel);
|
|
this.$set(this.setting[i], 'linkTitle', selectedCourse.dictLabel);
|
|
|
this.$set(this.setting[i], 'linkImageUrl', selectedCourse.dictImgUrl);
|
|
this.$set(this.setting[i], 'linkImageUrl', selectedCourse.dictImgUrl);
|
|
|
}
|
|
}
|
|
|
- if (this.setting[i].contentType == 4 || this.setting[i].contentType == 10 || this.setting[i].contentType == 17
|
|
|
|
|
|
|
+ if (this.setting[i].contentType == 4 || this.setting[i].contentType == 10 || this.setting[i].contentType == 17
|
|
|
|| this.setting[i].contentType == 23){//新增APP 看课 跳转短链回填封面
|
|
|| this.setting[i].contentType == 23){//新增APP 看课 跳转短链回填封面
|
|
|
this.$set(this.setting[i], 'miniprogramPicUrl', selectedCourse.dictImgUrl);
|
|
this.$set(this.setting[i], 'miniprogramPicUrl', selectedCourse.dictImgUrl);
|
|
|
}
|
|
}
|
|
@@ -898,7 +898,7 @@ export default {
|
|
|
this.$set(this.setting[i], 'linkImageUrl', selectedVideo.dictImgUrl);
|
|
this.$set(this.setting[i], 'linkImageUrl', selectedVideo.dictImgUrl);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
- if (this.setting[i].contentType == 4 || this.setting[i].contentType == 10 || this.setting[i].contentType == 17
|
|
|
|
|
|
|
+ if (this.setting[i].contentType == 4 || this.setting[i].contentType == 10 || this.setting[i].contentType == 17
|
|
|
|| this.setting[i].contentType == 23){//新增APP 看课 跳转短链回填标题
|
|
|| this.setting[i].contentType == 23){//新增APP 看课 跳转短链回填标题
|
|
|
this.$set(this.setting[i], 'miniprogramTitle', selectedVideo.dictLabel);
|
|
this.$set(this.setting[i], 'miniprogramTitle', selectedVideo.dictLabel);
|
|
|
|
|
|