|
@@ -445,6 +445,66 @@
|
|
|
errorMsg="请选择分部"
|
|
|
/>
|
|
|
</div>
|
|
|
+
|
|
|
+ <div class="m-wrap" v-permission="'export/STUDENT_VIP_COURSE_INFO'">
|
|
|
+ <div class="title">VIP课学员课程导出:</div>
|
|
|
+ <select-all
|
|
|
+ v-model.trim="vipStudentCourseOrganId"
|
|
|
+ class="organSelect"
|
|
|
+ style="width: 100%"
|
|
|
+ filterable
|
|
|
+ multiple
|
|
|
+ placeholder="请选择分部"
|
|
|
+ clearable
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="(item, index) in selects.branchs"
|
|
|
+ :key="index"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.id"
|
|
|
+ ></el-option>
|
|
|
+ </select-all>
|
|
|
+
|
|
|
+ <ExportChiose
|
|
|
+ style="margin-left: 10px"
|
|
|
+ ExportEnum="STUDENT_VIP_COURSE_INFO"
|
|
|
+ :exportData="exportAbnormal"
|
|
|
+ fileName="VIP课学员课程信息导出"
|
|
|
+ errorMsg="请选择分部"
|
|
|
+ :flag="this.vipStudentCourseOrganId.length < 1"
|
|
|
+ :isDownList="true"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="m-wrap" v-permission="'export/STUDENT_MUSIC_THEORY_COURSE_INFO'">
|
|
|
+ <div class="title">乐理课学员课程导出:</div>
|
|
|
+ <select-all
|
|
|
+ v-model.trim="musicStudentCourseOrganId"
|
|
|
+ class="organSelect"
|
|
|
+ style="width: 100%"
|
|
|
+ filterable
|
|
|
+ multiple
|
|
|
+ placeholder="请选择分部"
|
|
|
+ clearable
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="(item, index) in selects.branchs"
|
|
|
+ :key="index"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.id"
|
|
|
+ ></el-option>
|
|
|
+ </select-all>
|
|
|
+
|
|
|
+ <ExportChiose
|
|
|
+ style="margin-left: 10px"
|
|
|
+ ExportEnum="STUDENT_MUSIC_THEORY_COURSE_INFO"
|
|
|
+ :exportData="exportAbnormal"
|
|
|
+ fileName="乐理课学员课程信息导出"
|
|
|
+ errorMsg="请选择分部"
|
|
|
+ :flag="this.musicStudentCourseOrganId.length < 1"
|
|
|
+ :isDownList="true"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
</el-collapse-item>
|
|
|
<el-collapse-item
|
|
|
name="3"
|
|
@@ -680,6 +740,8 @@ export default {
|
|
|
organId: null,
|
|
|
},
|
|
|
activeName: ["1", "2", "3", "4"],
|
|
|
+ vipStudentCourseOrganId: [],
|
|
|
+ musicStudentCourseOrganId: [],
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|