辅导员分配宿舍
This commit is contained in:
@@ -58,7 +58,7 @@
|
|||||||
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum"
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum"
|
||||||
:limit.sync="queryParams.pageSize" @pagination="getDormitory" />
|
:limit.sync="queryParams.pageSize" @pagination="getDormitory" />
|
||||||
|
|
||||||
<el-dialog title="查看已经入住新生" :visible.sync="lookV" width="900px">
|
<el-dialog title="查看已经入住新生" :visible.sync="lookV" width="1000px">
|
||||||
<el-button size="mini" @click="addVClick" class="btn-blue">添加新生</el-button>
|
<el-button size="mini" @click="addVClick" class="btn-blue">添加新生</el-button>
|
||||||
<el-table :data="stu_list">
|
<el-table :data="stu_list">
|
||||||
<el-table-column label="学生姓名" align="center" prop="xsxm" />
|
<el-table-column label="学生姓名" align="center" prop="xsxm" />
|
||||||
@@ -77,8 +77,11 @@
|
|||||||
</el-table>
|
</el-table>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
|
||||||
<el-dialog title="添加新生" :visible.sync="addV" width="1200px">
|
<el-dialog title="添加新生" :visible.sync="addV" width="1300px">
|
||||||
<el-form label-width="90px" :inline="true">
|
<el-form class="lookForm" label-width="90px" :inline="true">
|
||||||
|
<el-form-item label="班级">
|
||||||
|
<el-input size="mini" v-model="add_bj" clearable />
|
||||||
|
</el-form-item>
|
||||||
<el-form-item label="民族">
|
<el-form-item label="民族">
|
||||||
<el-input size="mini" v-model="add_mz" clearable />
|
<el-input size="mini" v-model="add_mz" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -100,6 +103,7 @@
|
|||||||
<el-table-column type="selection" width="55" align="center" />
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
<el-table-column prop="ksh" label="考生号" width="180" />
|
<el-table-column prop="ksh" label="考生号" width="180" />
|
||||||
<el-table-column prop="xsxm" label="学生姓名" />
|
<el-table-column prop="xsxm" label="学生姓名" />
|
||||||
|
<el-table-column prop="bj" label="班级" />
|
||||||
<el-table-column prop="xb" label="性别" width="50" />
|
<el-table-column prop="xb" label="性别" width="50" />
|
||||||
<el-table-column prop="dorm" label="宿舍" width="280" />
|
<el-table-column prop="dorm" label="宿舍" width="280" />
|
||||||
<el-table-column prop="mz" label="民族" />
|
<el-table-column prop="mz" label="民族" />
|
||||||
@@ -193,6 +197,7 @@ export default {
|
|||||||
add_mz: null,
|
add_mz: null,
|
||||||
add_syd: null,
|
add_syd: null,
|
||||||
add_sfz_addr: null,
|
add_sfz_addr: null,
|
||||||
|
add_bj:null,
|
||||||
// 用户导入参数
|
// 用户导入参数
|
||||||
upload: {
|
upload: {
|
||||||
// 是否显示弹出层(用户导入)
|
// 是否显示弹出层(用户导入)
|
||||||
@@ -303,7 +308,8 @@ export default {
|
|||||||
BJDM: this.now_room.classCode,
|
BJDM: this.now_room.classCode,
|
||||||
MZ: this.add_mz,
|
MZ: this.add_mz,
|
||||||
SYD: this.add_syd,
|
SYD: this.add_syd,
|
||||||
sfzAddr: this.add_sfz_addr
|
sfzAddr: this.add_sfz_addr,
|
||||||
|
BJ:this.add_bj
|
||||||
}
|
}
|
||||||
let res = await listClassCanStu(params);
|
let res = await listClassCanStu(params);
|
||||||
loading.close();
|
loading.close();
|
||||||
@@ -494,6 +500,13 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
||||||
|
.lookForm {
|
||||||
|
.el-form-item {
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.top {
|
.top {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|||||||
Reference in New Issue
Block a user