|
@@ -5,26 +5,27 @@
|
|
|
<div class="squrt"></div>名字
|
|
|
</h2>
|
|
|
<div class="m-core">
|
|
|
- <el-form :inline="true" :model="searchForm">
|
|
|
+ <el-form :inline="true"
|
|
|
+ :model="searchForm">
|
|
|
<el-form-item>
|
|
|
- <el-input v-model.trim="searchForm.search" @keyup.enter.native="search" placeholder></el-input>
|
|
|
+ <el-input v-model.trim="searchForm.search"
|
|
|
+ @keyup.enter.native="search"
|
|
|
+ placeholder></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div class="tableWrap">
|
|
|
- <el-table
|
|
|
- style="width: 100%"
|
|
|
- :header-cell-style="{background:'#EDEEF0',color:'#444'}"
|
|
|
- :data="tableList"
|
|
|
- >
|
|
|
- <el-table-column align="center" prop="studentId" label="分部"></el-table-column>
|
|
|
+ <el-table style="width: 100%"
|
|
|
+ :header-cell-style="{background:'#EDEEF0',color:'#444'}"
|
|
|
+ :data="tableList">
|
|
|
+ <el-table-column align="center"
|
|
|
+ prop="studentId"
|
|
|
+ label="分部"></el-table-column>
|
|
|
</el-table>
|
|
|
- <pagination
|
|
|
- :total="rules.total"
|
|
|
- :page.sync="rules.page"
|
|
|
- :limit.sync="rules.limit"
|
|
|
- :page-sizes="rules.page_size"
|
|
|
- @pagination="getList"
|
|
|
- />
|
|
|
+ <pagination :total="rules.total"
|
|
|
+ :page.sync="rules.page"
|
|
|
+ :limit.sync="rules.limit"
|
|
|
+ :page-sizes="rules.page_size"
|
|
|
+ @pagination="getList" />
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -39,7 +40,7 @@ import { getTeacher, getEmployeeOrgan } from "@/api/buildTeam";
|
|
|
|
|
|
export default {
|
|
|
components: { pagination },
|
|
|
- data() {
|
|
|
+ data () {
|
|
|
return {
|
|
|
searchForm: {
|
|
|
search: null
|
|
@@ -53,29 +54,41 @@ export default {
|
|
|
page: 1, // 当前页
|
|
|
total: 0, // 总条数
|
|
|
page_size: [10, 20, 40, 50] // 选择限制显示条数
|
|
|
- }
|
|
|
+ },
|
|
|
+ isInit: false
|
|
|
};
|
|
|
},
|
|
|
//生命周期 - 创建完成(可以访问当前this实例)
|
|
|
- created() {},
|
|
|
+ created () { },
|
|
|
//生命周期 - 挂载完成(可以访问DOM元素)
|
|
|
- mounted() {
|
|
|
- getTeacher().then(res => {
|
|
|
+ mounted () {
|
|
|
+ getTeacher().then(res => {
|
|
|
if (res.code == 200) {
|
|
|
this.teacherList = res.data;
|
|
|
}
|
|
|
});
|
|
|
- getEmployeeOrgan().then(res => {
|
|
|
+ getEmployeeOrgan().then(res => {
|
|
|
if (res.code == 200) {
|
|
|
this.organList = res.data;
|
|
|
}
|
|
|
});
|
|
|
// 获取分部
|
|
|
- this.init();
|
|
|
+ if (!isInit) {
|
|
|
+ this.init();
|
|
|
+ }
|
|
|
+
|
|
|
+ },
|
|
|
+ activated () {
|
|
|
+ if (!isInit) {
|
|
|
+ this.init();
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
- init() {},
|
|
|
- getList() {}
|
|
|
+ init () {
|
|
|
+ this.init = true;
|
|
|
+ this.init = false;
|
|
|
+ },
|
|
|
+ getList () { }
|
|
|
}
|
|
|
};
|
|
|
</script>
|