|
@@ -108,7 +108,7 @@
|
|
|
<el-table-column prop="date" label="操作" min-width="30">
|
|
|
<template slot-scope="scope">
|
|
|
<div class="pb_buttonBox">
|
|
|
- <el-button size="mini" type="primary" @click="selectType">
|
|
|
+ <el-button size="mini" type="primary" @click="selectType(scope.row.id)">
|
|
|
查看分类
|
|
|
</el-button>
|
|
|
<el-button
|
|
@@ -204,7 +204,7 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
- <div class="student_page">
|
|
|
+ <div class="student_page" v-if="step == 0">
|
|
|
<el-pagination
|
|
|
background
|
|
|
layout="prev, pager, next"
|
|
@@ -214,6 +214,26 @@
|
|
|
@current-change="handleCurrentChange"
|
|
|
></el-pagination>
|
|
|
</div>
|
|
|
+ <div class="student_page" v-if="step == 1">
|
|
|
+ <el-pagination
|
|
|
+ background
|
|
|
+ layout="prev, pager, next"
|
|
|
+ :page-size="10"
|
|
|
+ :total="total1"
|
|
|
+ v-if="page1"
|
|
|
+ @current-change="handleCurrentChange1"
|
|
|
+ ></el-pagination>
|
|
|
+ </div>
|
|
|
+ <div class="student_page" v-if="step == 2">
|
|
|
+ <el-pagination
|
|
|
+ background
|
|
|
+ layout="prev, pager, next"
|
|
|
+ :page-size="10"
|
|
|
+ :total="total2"
|
|
|
+ v-if="page2"
|
|
|
+ @current-change="handleCurrentChange2"
|
|
|
+ ></el-pagination>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<el-dialog
|
|
|
title="添加学校"
|
|
@@ -359,6 +379,10 @@ export default {
|
|
|
sTypeName: "",
|
|
|
page: 1,
|
|
|
total: 0,
|
|
|
+ page1: 1,
|
|
|
+ total1: 0,
|
|
|
+ page2: 1,
|
|
|
+ total2: 0,
|
|
|
userid: this.$route.query.userid,
|
|
|
oid: this.$route.query.oid,
|
|
|
dialogVisible: false,
|
|
@@ -366,6 +390,7 @@ export default {
|
|
|
dialogVisible2: false,
|
|
|
dialogVisible3: false,
|
|
|
dialogVisible4: false,
|
|
|
+ updateOid:"",
|
|
|
dialogVisible5: false,
|
|
|
step: 0,
|
|
|
pid: "",
|
|
@@ -407,6 +432,14 @@ export default {
|
|
|
this.page = val;
|
|
|
this.selectSchool();
|
|
|
},
|
|
|
+ handleCurrentChange1(val) {
|
|
|
+ this.page1 = val;
|
|
|
+ this.selectType();
|
|
|
+ },
|
|
|
+ handleCurrentChange2(val) {
|
|
|
+ this.page2 = val;
|
|
|
+ this.selectSType();
|
|
|
+ },
|
|
|
selectSchool() {
|
|
|
this.isLoading = true;
|
|
|
let params = {
|
|
@@ -416,6 +449,7 @@ export default {
|
|
|
.get(this.$store.state.api + "selectSchoolName", params)
|
|
|
.then((res) => {
|
|
|
this.isLoading = false;
|
|
|
+ this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
|
|
|
this.tableData = res.data[0];
|
|
|
})
|
|
|
.catch((err) => {
|
|
@@ -505,14 +539,18 @@ export default {
|
|
|
console.error(err);
|
|
|
});
|
|
|
},
|
|
|
- selectType() {
|
|
|
+ selectType(id) {
|
|
|
+ this.tableData1 = [];
|
|
|
+ this.tableData2 = [];
|
|
|
this.step = 1;
|
|
|
+ this.updateOid = id;
|
|
|
let params = {
|
|
|
- page: this.page,
|
|
|
+ page: this.page1,
|
|
|
};
|
|
|
this.ajax
|
|
|
.get(this.$store.state.api + "selectPtype", params)
|
|
|
.then((res) => {
|
|
|
+ this.total1 = res.data[0].length > 0 ? res.data[0][0].num : 0;
|
|
|
this.tableData1 = res.data[0];
|
|
|
})
|
|
|
.catch((err) => {
|
|
@@ -526,12 +564,13 @@ export default {
|
|
|
}
|
|
|
let params = {
|
|
|
pid: pid != undefined ? pid : this.pid,
|
|
|
- oid: this.oid,
|
|
|
- page: this.page,
|
|
|
+ oid: this.updateOid,
|
|
|
+ page: this.page2,
|
|
|
};
|
|
|
this.ajax
|
|
|
.get(this.$store.state.api + "selectStype", params)
|
|
|
.then((res) => {
|
|
|
+ this.total2 = res.data[0].length > 0 ? res.data[0][0].num : 0;
|
|
|
this.tableData2 = res.data[0];
|
|
|
})
|
|
|
.catch((err) => {
|
|
@@ -607,7 +646,7 @@ export default {
|
|
|
n: this.sTypeName,
|
|
|
pid: this.pid,
|
|
|
uid: this.userid,
|
|
|
- oid: this.oid,
|
|
|
+ oid: this.updateOid,
|
|
|
};
|
|
|
this.ajax
|
|
|
.get(this.$store.state.api + "addStype", params)
|