|
@@ -1,5 +1,6 @@
|
|
<template>
|
|
<template>
|
|
<div class="tableList">
|
|
<div class="tableList">
|
|
|
|
+ {{organIds+'1111'}}
|
|
<save-form
|
|
<save-form
|
|
:inline="true"
|
|
:inline="true"
|
|
class="searchForm"
|
|
class="searchForm"
|
|
@@ -16,24 +17,7 @@
|
|
v-model.trim="searchForm.search"
|
|
v-model.trim="searchForm.search"
|
|
></el-input>
|
|
></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <el-form-item prop="organId">
|
|
|
|
- <el-select
|
|
|
|
- class="multiple"
|
|
|
|
- filterable
|
|
|
|
- v-model.trim="searchForm.organId"
|
|
|
|
- multiple
|
|
|
|
- collapse-tags
|
|
|
|
- clearable
|
|
|
|
- placeholder="请选择分部"
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="(item, index) in selects.branchs"
|
|
|
|
- :key="index"
|
|
|
|
- :label="item.name"
|
|
|
|
- :value="item.id"
|
|
|
|
- ></el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
|
|
+
|
|
<el-form-item prop="studentStatus">
|
|
<el-form-item prop="studentStatus">
|
|
<el-select
|
|
<el-select
|
|
class="multiple"
|
|
class="multiple"
|
|
@@ -435,6 +419,7 @@ import qs from "qs";
|
|
export default {
|
|
export default {
|
|
name: "tableList",
|
|
name: "tableList",
|
|
props: ["groupType"],
|
|
props: ["groupType"],
|
|
|
|
+ jnject:["organId"],
|
|
components: {
|
|
components: {
|
|
pagination,
|
|
pagination,
|
|
visiList,
|
|
visiList,
|
|
@@ -493,7 +478,7 @@ export default {
|
|
...getTimes(timer, ["firstCourseStartTime", "firstCourseEndTime"]),
|
|
...getTimes(timer, ["firstCourseStartTime", "firstCourseEndTime"]),
|
|
rows: this.pageInfo.limit,
|
|
rows: this.pageInfo.limit,
|
|
page: this.pageInfo.page,
|
|
page: this.pageInfo.page,
|
|
- organId: this.searchForm.organId.join(","),
|
|
|
|
|
|
+ organId: organIds,
|
|
};
|
|
};
|
|
let res = await queryPage({
|
|
let res = await queryPage({
|
|
...obj,
|
|
...obj,
|
|
@@ -552,6 +537,11 @@ export default {
|
|
);
|
|
);
|
|
},
|
|
},
|
|
},
|
|
},
|
|
|
|
+ computed:{
|
|
|
|
+ organIds(){
|
|
|
|
+ return this.organId
|
|
|
|
+ }
|
|
|
|
+ }
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|
|
|
|
|