|
@@ -2,7 +2,7 @@
|
|
|
<div class="m-container">
|
|
|
<h2>
|
|
|
<div class="squrt"></div>
|
|
|
- 课表列表 <filter-search @reload="reloadSearch" :keys="['searchType']" :moreKeys="['start', 'end', 'organId']"/>
|
|
|
+ 课表列表 <filter-search ref='filterSearch' @reload="reloadSearch" :keys="['searchType']" :moreKeys="['start', 'end', 'organId']"/>
|
|
|
</h2>
|
|
|
<div class="m-core">
|
|
|
<!-- 搜索类型 -->
|
|
@@ -525,7 +525,7 @@
|
|
|
<el-tab-pane label="学员列表" name="first">
|
|
|
<div v-if="activeName == 'first'">
|
|
|
<!-- studentRollCall -->
|
|
|
- <studentRollCall :courseScheduleId="maskForm.id"></studentRollCall>
|
|
|
+ <studentRollCall :courseScheduleId="maskForm.id" :isMainGo='isMainGo'></studentRollCall>
|
|
|
</div>
|
|
|
</el-tab-pane>
|
|
|
<!-- <el-tab-pane label="GPS定位"
|
|
@@ -672,7 +672,8 @@ export default {
|
|
|
id: null,
|
|
|
show: false,
|
|
|
compoundList: [],
|
|
|
- deleteList:[]
|
|
|
+ deleteList:[],
|
|
|
+ isMainGo:false
|
|
|
};
|
|
|
},
|
|
|
components: {
|
|
@@ -689,6 +690,7 @@ export default {
|
|
|
},
|
|
|
created(){
|
|
|
this.searchForm.timer = [nowTime, nowTime]
|
|
|
+
|
|
|
},
|
|
|
computed: {
|
|
|
workTypeOptions() {
|
|
@@ -697,6 +699,7 @@ export default {
|
|
|
mergeCourseTypeOptions() {
|
|
|
return objectToOptions(mergeCourseType);
|
|
|
},
|
|
|
+
|
|
|
},
|
|
|
mounted() {
|
|
|
const { query } = this.$route
|
|
@@ -897,6 +900,8 @@ export default {
|
|
|
this.maskForm.id = row.id;
|
|
|
this.activeName = "first";
|
|
|
this.classVisible = true;
|
|
|
+ this.isMainGo = this.$refs.filterSearch?.show
|
|
|
+ console.log(this.isMainGo)
|
|
|
}
|
|
|
}
|
|
|
);
|