|
@@ -59,7 +59,7 @@ import pagination from "@/components/pagination";
|
|
|
import { sectionBatchDel } from "@/api/resource/videoManagement";
|
|
|
export default {
|
|
|
name: "Festival",
|
|
|
- components: { searchBoxNew, tableList, pagination,batchImportDialoga },
|
|
|
+ components: { searchBoxNew, tableList, pagination, batchImportDialoga },
|
|
|
data() {
|
|
|
return {
|
|
|
dialogDR: false, //导入窗口
|
|
@@ -191,7 +191,21 @@ export default {
|
|
|
label: "节类型",
|
|
|
prop: "sectionType",
|
|
|
hidden: true,
|
|
|
- scope: "sectionTypesTTT",
|
|
|
+ scope: "isOptions",
|
|
|
+ options: [
|
|
|
+ {
|
|
|
+ label: "录播",
|
|
|
+ value: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "直播",
|
|
|
+ value: 2,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "回放",
|
|
|
+ value: 3,
|
|
|
+ },
|
|
|
+ ],
|
|
|
width: "120px",
|
|
|
},
|
|
|
{
|
|
@@ -303,7 +317,7 @@ export default {
|
|
|
pageSize: 10,
|
|
|
pageNum: 1,
|
|
|
};
|
|
|
- this.$refs.tableList.clearMoreActive()
|
|
|
+ this.$refs.tableList.clearMoreActive();
|
|
|
}
|
|
|
this.$api
|
|
|
.inquireCourseSection(this.formData)
|
|
@@ -500,4 +514,3 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
</style>
|
|
|
-
|