|
@@ -14,7 +14,16 @@
|
|
|
</div>
|
|
|
<div class="student_head">
|
|
|
<div class="head_left">
|
|
|
- <el-input v-model="sPhoneUser" class="student_input" placeholder="请输入手机号或用户名"></el-input>
|
|
|
+ <el-input v-model="sPhoneUser" class="student_input" placeholder="请输入用户名"></el-input>
|
|
|
+ <el-select v-model="cid" placeholder="请选择班级" class="student_input" @change="searchStudent">
|
|
|
+ <el-option label="所有人" value=""></el-option>
|
|
|
+ <el-option
|
|
|
+ v-for="(item, index) in classJuri"
|
|
|
+ :key="index"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.id"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
<el-button class="student_button" @click="searchStudent">查询</el-button>
|
|
|
</div>
|
|
|
<div class="head_right">
|
|
@@ -63,7 +72,7 @@
|
|
|
</div>
|
|
|
<div
|
|
|
style="
|
|
|
- width: 50px;
|
|
|
+ width: 150px;
|
|
|
text-align: left;
|
|
|
white-space: nowrap;
|
|
|
overflow: hidden;
|
|
@@ -78,12 +87,12 @@
|
|
|
<div>{{scope.row.un ? scope.row.un : "" }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="电话" min-width="15" align="center">
|
|
|
+ <!-- <el-table-column label="电话" min-width="15" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<div>{{scope.row.phonenumber ? scope.row.phonenumber : "" }}</div>
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="studentid" label="学号" min-width="10" align="center"></el-table-column>
|
|
|
+ </el-table-column> -->
|
|
|
+ <!-- <el-table-column prop="studentid" label="学号" min-width="10" align="center"></el-table-column> -->
|
|
|
<!-- <el-table-column
|
|
|
prop="school"
|
|
|
label="学校"
|
|
@@ -91,14 +100,14 @@
|
|
|
align="center"
|
|
|
>
|
|
|
</el-table-column>-->
|
|
|
- <!-- <el-table-column
|
|
|
- prop="classname"
|
|
|
+ <el-table-column
|
|
|
+ prop="classname2"
|
|
|
label="班级"
|
|
|
min-width="15"
|
|
|
align="center"
|
|
|
>
|
|
|
- </el-table-column>-->
|
|
|
- <el-table-column label="操作" min-width="20">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="操作" width="200px">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <el-button
|
|
|
class="de_button"
|
|
@@ -208,7 +217,7 @@ export default {
|
|
|
sPhoneUser: "",
|
|
|
userid: this.$route.query.userid,
|
|
|
oid: this.$route.query.oid,
|
|
|
- cid: this.$route.query.cid,
|
|
|
+ cid: '',
|
|
|
tx: require("../../assets/avatar.png"),
|
|
|
};
|
|
|
},
|
|
@@ -944,6 +953,7 @@ export default {
|
|
|
this.page = 1;
|
|
|
this.getStudent();
|
|
|
this.getSchoolName();
|
|
|
+ this.getClass();
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
@@ -1125,4 +1135,16 @@ export default {
|
|
|
flex-wrap: nowrap;
|
|
|
align-items: baseline;
|
|
|
}
|
|
|
+
|
|
|
+.student_input.el-input{
|
|
|
+ width: auto;
|
|
|
+}
|
|
|
+
|
|
|
+.student_input{
|
|
|
+ margin-right: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+.student_input >>> .el-input__icon{
|
|
|
+ line-height: unset;
|
|
|
+}
|
|
|
</style>
|