|
@@ -1,195 +1,100 @@
|
|
|
<template>
|
|
|
<div class="pb_content" style="background: unset">
|
|
|
- <div
|
|
|
- v-if="ctype==1"
|
|
|
- class="pb_content_body"
|
|
|
- style="
|
|
|
- background: #fff;
|
|
|
- padding: 0px 25px;
|
|
|
- box-sizing: border-box;
|
|
|
- border-radius: 5px;
|
|
|
- "
|
|
|
- >
|
|
|
+ <div v-if="ctype == 1" class="pb_content_body" style="
|
|
|
+ background: #fff;
|
|
|
+ padding: 0px 25px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ border-radius: 5px;
|
|
|
+ ">
|
|
|
<div class="pb_head top">
|
|
|
<span>班级管理</span>
|
|
|
<div class="student_button" style="border-radius: 4px;">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- class="bgColor"
|
|
|
- @click="dialogVisible = true"
|
|
|
- >添加班级</el-button
|
|
|
- >
|
|
|
+ <el-button type="primary" class="bgColor" @click="dialogVisible = true">添加班级</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="student_head">
|
|
|
<div class="student_search">
|
|
|
<span>
|
|
|
- <el-input
|
|
|
- placeholder="请输入班级名称"
|
|
|
- v-model="sClassName"
|
|
|
- clearable
|
|
|
- >
|
|
|
+ <el-input placeholder="请输入班级名称" v-model="sClassName" clearable>
|
|
|
</el-input>
|
|
|
</span>
|
|
|
<el-button type="primary" @click="searchClass">查询</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="pb_content_body" v-if="ctype==1">
|
|
|
+ <div class="pb_content_body" v-if="ctype == 1">
|
|
|
<div class="student_table">
|
|
|
- <el-table
|
|
|
- v-if="ctype==1"
|
|
|
- ref="table"
|
|
|
- :key="1"
|
|
|
- :data="tableData"
|
|
|
- border
|
|
|
- :height="tableHeight"
|
|
|
- :fit="true"
|
|
|
- v-loading="isLoading"
|
|
|
- style="width: 100%; height: 60%"
|
|
|
- :header-cell-style="{ background: '#f1f1f1' }"
|
|
|
- :row-class-name="tableRowClassName"
|
|
|
- >
|
|
|
- <el-table-column
|
|
|
- prop="name"
|
|
|
- label="班级名称"
|
|
|
- min-width="40%"
|
|
|
- align="center"
|
|
|
- >
|
|
|
+ <el-table v-if="ctype == 1" ref="table" :key="1" :data="tableData" border :height="tableHeight" :fit="true"
|
|
|
+ v-loading="isLoading" style="width: 100%; height: 60%" :header-cell-style="{ background: '#f1f1f1' }"
|
|
|
+ :row-class-name="tableRowClassName">
|
|
|
+ <el-table-column prop="name" label="班级名称" min-width="40%" align="center">
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- prop="pnum"
|
|
|
- label="人数"
|
|
|
- min-width="40%"
|
|
|
- align="center"
|
|
|
- >
|
|
|
+ <el-table-column prop="pnum" label="人数" min-width="40%" align="center">
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" min-width="20%">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- size="small"
|
|
|
- @click="getStudent(scope.row.id)"
|
|
|
- >查看学生</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- size="small"
|
|
|
- @click="openUpdate(scope.row.id, scope.row.name)"
|
|
|
- >修改</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- size="small"
|
|
|
- @click="deleteClass(scope.row.id)"
|
|
|
- >删除</el-button
|
|
|
- >
|
|
|
+ <el-button type="primary" size="small" @click="getStudent(scope.row.id)">查看学生</el-button>
|
|
|
+ <el-button type="primary" size="small" @click="openUpdate(scope.row.id, scope.row.name)">修改</el-button>
|
|
|
+ <el-button type="primary" size="small" @click="deleteClass(scope.row.id)">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
<div class="student_page">
|
|
|
- <el-pagination
|
|
|
- background
|
|
|
- layout="prev, pager, next"
|
|
|
- :page-size="10"
|
|
|
- :total="total"
|
|
|
- v-if="page"
|
|
|
- @current-change="handleCurrentChange"
|
|
|
- >
|
|
|
+ <el-pagination background layout="prev, pager, next" :page-size="10" :total="total" v-if="page"
|
|
|
+ @current-change="handleCurrentChange">
|
|
|
</el-pagination>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div
|
|
|
- v-if="ctype==2"
|
|
|
- class="pb_content_body"
|
|
|
- style="
|
|
|
- background: #fff;
|
|
|
- padding: 0px 25px;
|
|
|
- box-sizing: border-box;
|
|
|
- border-radius: 5px;
|
|
|
- "
|
|
|
- >
|
|
|
+ <div v-if="ctype == 2" class="pb_content_body" style="
|
|
|
+ background: #fff;
|
|
|
+ padding: 0px 25px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ border-radius: 5px;
|
|
|
+ ">
|
|
|
<div class="pb_head top">
|
|
|
<span>查看学生</span>
|
|
|
<div class="student_button" style="border-radius: 4px;">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- class="bgColor"
|
|
|
- @click="ctype = 1,getClass()"
|
|
|
- >返回</el-button
|
|
|
- >
|
|
|
+ <el-button type="primary" class="bgColor" @click="ctype = 1, getClass()">返回</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="student_head">
|
|
|
<div class="head_left">
|
|
|
- <el-input
|
|
|
- v-model="sPhoneUser"
|
|
|
- class="student_input"
|
|
|
- placeholder="请输入用户名"
|
|
|
- ></el-input>
|
|
|
- <el-select
|
|
|
- disabled
|
|
|
- v-model="cid"
|
|
|
- placeholder="请选择班级"
|
|
|
- class="student_input"
|
|
|
- @change="searchStudent"
|
|
|
- style="margin:0 10px"
|
|
|
- >
|
|
|
+ <el-input v-model="sPhoneUser" class="student_input" placeholder="请输入用户名"></el-input>
|
|
|
+ <el-select disabled v-model="cid" placeholder="请选择班级" class="student_input" @change="searchStudent"
|
|
|
+ style="margin:0 10px">
|
|
|
<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-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
|
|
|
- >
|
|
|
+ <el-button class="student_button" @click="searchStudent">查询</el-button>
|
|
|
</div>
|
|
|
<div class="head_right">
|
|
|
<el-button @click="addStudent">添加学生</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="pb_content_body" v-if="ctype==2">
|
|
|
+ <div class="pb_content_body" v-if="ctype == 2">
|
|
|
<div class="student_table">
|
|
|
- <el-table
|
|
|
- v-if="ctype==2"
|
|
|
- :key="2"
|
|
|
- ref="table2"
|
|
|
- :data="tableData2"
|
|
|
- border
|
|
|
- :height="tableHeight"
|
|
|
- :fit="true"
|
|
|
- v-loading="isLoading"
|
|
|
- style="width: 100%"
|
|
|
- :header-cell-style="{ background: '#f1f1f1', fontSize: '17px' }"
|
|
|
- :row-class-name="tableRowClassName"
|
|
|
- >
|
|
|
+ <el-table v-if="ctype == 2" :key="2" ref="table2" :data="tableData2" border :height="tableHeight" :fit="true"
|
|
|
+ v-loading="isLoading" style="width: 100%" :header-cell-style="{ background: '#f1f1f1', fontSize: '17px' }"
|
|
|
+ :row-class-name="tableRowClassName">
|
|
|
<el-table-column label="姓名" min-width="10" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<div class="userImg">
|
|
|
<div class="tx">
|
|
|
- <img
|
|
|
- :src="
|
|
|
- scope.row.headportrait != null
|
|
|
- ? scope.row.headportrait
|
|
|
- : tx
|
|
|
- "
|
|
|
- alt
|
|
|
- />
|
|
|
+ <img :src="
|
|
|
+ scope.row.headportrait != null
|
|
|
+ ? scope.row.headportrait
|
|
|
+ : tx
|
|
|
+ " alt />
|
|
|
</div>
|
|
|
- <div
|
|
|
- style="
|
|
|
- width: 150px;
|
|
|
- text-align: left;
|
|
|
- white-space: nowrap;
|
|
|
- overflow: hidden;
|
|
|
- text-overflow: ellipsis;
|
|
|
- "
|
|
|
- >
|
|
|
+ <div style="
|
|
|
+ width: 150px;
|
|
|
+ text-align: left;
|
|
|
+ white-space: nowrap;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ ">
|
|
|
{{ scope.row.name }}
|
|
|
</div>
|
|
|
</div>
|
|
@@ -200,60 +105,31 @@
|
|
|
<div>{{ scope.row.un ? scope.row.un : "" }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- prop="classname2"
|
|
|
- label="班级"
|
|
|
- min-width="15"
|
|
|
- align="center"
|
|
|
- >
|
|
|
+ <el-table-column prop="classname2" label="班级" min-width="15" align="center">
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" width="250px">
|
|
|
<template slot-scope="scope">
|
|
|
<div class="btnBox">
|
|
|
- <el-button
|
|
|
- class="de_button"
|
|
|
- type="primary"
|
|
|
- size="small"
|
|
|
- @click="iniPassword(scope.row.userid)"
|
|
|
- >初始化密码</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- class="de_button"
|
|
|
- type="primary"
|
|
|
- size="small"
|
|
|
- @click="updateStudentA(scope.row)"
|
|
|
- >修改</el-button
|
|
|
- >
|
|
|
- <div class="delete">
|
|
|
- <img
|
|
|
- src="../../assets/remove.png"
|
|
|
- alt
|
|
|
- @click="deleteStudent(scope.row.userid, scope.row.state)"
|
|
|
- />
|
|
|
- </div>
|
|
|
+ <el-button class="de_button" type="primary" size="small"
|
|
|
+ @click="iniPassword(scope.row.userid)">初始化密码</el-button>
|
|
|
+ <el-button class="de_button" type="primary" size="small" @click="updateStudentA(scope.row)">修改</el-button>
|
|
|
+ <el-button class="de_button" type="primary" size="small"
|
|
|
+ @click="deleteClassStudent(scope.row.userid)">移除</el-button>
|
|
|
+ <!-- <div class="delete">
|
|
|
+ <img src="../../assets/remove.png" alt @click="deleteStudent(scope.row.userid, scope.row.state)" />
|
|
|
+ </div> -->
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
<div class="student_page">
|
|
|
- <el-pagination
|
|
|
- background
|
|
|
- layout="prev, pager, next"
|
|
|
- :page-size="10"
|
|
|
- :total="total2"
|
|
|
- v-if="page2"
|
|
|
- @current-change="handleCurrentChange2"
|
|
|
- ></el-pagination>
|
|
|
+ <el-pagination background layout="prev, pager, next" :page-size="10" :total="total2" v-if="page2"
|
|
|
+ @current-change="handleCurrentChange2"></el-pagination>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <el-dialog
|
|
|
- :visible.sync="dialogVisibleAddStudent"
|
|
|
- :append-to-body="true"
|
|
|
- width="700px"
|
|
|
- :before-close="handleClose"
|
|
|
- class="add_student"
|
|
|
- >
|
|
|
+ <el-dialog :visible.sync="dialogVisibleAddStudent" :append-to-body="true" width="700px" :before-close="handleClose"
|
|
|
+ class="add_student">
|
|
|
<div slot="title" class="header-title">
|
|
|
<div class="logoImg">
|
|
|
<img src="../../assets/logo.png" alt />
|
|
@@ -263,59 +139,30 @@
|
|
|
<el-form>
|
|
|
<el-form-item label="学生姓名" :label-width="formLabelWidth">
|
|
|
<span>
|
|
|
- <el-input
|
|
|
- placeholder="请输入学生姓名"
|
|
|
- clearable
|
|
|
- v-model="sName"
|
|
|
- class="add_input"
|
|
|
- ></el-input>
|
|
|
+ <el-input placeholder="请输入学生姓名" clearable v-model="sName" class="add_input"></el-input>
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="学生学号" :label-width="formLabelWidth">
|
|
|
<span>
|
|
|
- <el-input
|
|
|
- placeholder="请输入学生学号"
|
|
|
- clearable
|
|
|
- v-model="sId"
|
|
|
- class="add_input"
|
|
|
- ></el-input>
|
|
|
+ <el-input placeholder="请输入学生学号" clearable v-model="sId" class="add_input"></el-input>
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="学生手机号" :label-width="formLabelWidth">
|
|
|
<span>
|
|
|
- <el-input
|
|
|
- placeholder="请输入学生手机号"
|
|
|
- clearable
|
|
|
- v-model="sPhone"
|
|
|
- class="add_input"
|
|
|
- ></el-input>
|
|
|
+ <el-input placeholder="请输入学生手机号" clearable v-model="sPhone" class="add_input"></el-input>
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="学生账号" :label-width="formLabelWidth">
|
|
|
<span>
|
|
|
- <el-input
|
|
|
- placeholder="请输入学生账号"
|
|
|
- clearable
|
|
|
- v-model="sMail"
|
|
|
- class="add_input"
|
|
|
- ></el-input>
|
|
|
+ <el-input placeholder="请输入学生账号" clearable v-model="sMail" class="add_input"></el-input>
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="所属学校" :label-width="formLabelWidth">
|
|
|
- <el-input
|
|
|
- disabled
|
|
|
- style="width: 300px"
|
|
|
- v-model="schoolName"
|
|
|
- ></el-input>
|
|
|
+ <el-input disabled style="width: 300px" v-model="schoolName"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="班级" :label-width="formLabelWidth">
|
|
|
<el-select v-model="cid" placeholder="请选择班级" disabled>
|
|
|
- <el-option
|
|
|
- v-for="(item, index) in classJuri"
|
|
|
- :key="index"
|
|
|
- :label="item.name"
|
|
|
- :value="item.id"
|
|
|
- ></el-option>
|
|
|
+ <el-option v-for="(item, index) in classJuri" :key="index" :label="item.name" :value="item.id"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<div style="text-align: center; color: #adb3b7">
|
|
@@ -326,13 +173,8 @@
|
|
|
<el-button class="right" @click="insertStudent">确认</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
- <el-dialog
|
|
|
- :visible.sync="dialogVisibleUpdate"
|
|
|
- :append-to-body="true"
|
|
|
- width="700px"
|
|
|
- :before-close="handleClose"
|
|
|
- class="add_student"
|
|
|
- >
|
|
|
+ <el-dialog :visible.sync="dialogVisibleUpdate" :append-to-body="true" width="700px" :before-close="handleClose"
|
|
|
+ class="add_student">
|
|
|
<div slot="title" class="header-title">
|
|
|
<div class="logoImg">
|
|
|
<img src="../../assets/logo.png" alt />
|
|
@@ -342,59 +184,30 @@
|
|
|
<el-form>
|
|
|
<el-form-item label="学生名称" :label-width="formLabelWidth">
|
|
|
<span>
|
|
|
- <el-input
|
|
|
- placeholder="请输入学生姓名"
|
|
|
- clearable
|
|
|
- v-model="userinfo.name"
|
|
|
- class="add_input"
|
|
|
- ></el-input>
|
|
|
+ <el-input placeholder="请输入学生姓名" clearable v-model="userinfo.name" class="add_input"></el-input>
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="学生学号" :label-width="formLabelWidth">
|
|
|
<span>
|
|
|
- <el-input
|
|
|
- placeholder="请输入学生学号"
|
|
|
- clearable
|
|
|
- v-model="userinfo.studentid"
|
|
|
- class="add_input"
|
|
|
- ></el-input>
|
|
|
+ <el-input placeholder="请输入学生学号" clearable v-model="userinfo.studentid" class="add_input"></el-input>
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="学生手机号" :label-width="formLabelWidth">
|
|
|
<span>
|
|
|
- <el-input
|
|
|
- placeholder="请输入学生手机号"
|
|
|
- clearable
|
|
|
- v-model="userinfo.phonenumber"
|
|
|
- class="add_input"
|
|
|
- ></el-input>
|
|
|
+ <el-input placeholder="请输入学生手机号" clearable v-model="userinfo.phonenumber" class="add_input"></el-input>
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="学生账号" :label-width="formLabelWidth">
|
|
|
<span>
|
|
|
- <el-input
|
|
|
- placeholder="请输入学生账号"
|
|
|
- clearable
|
|
|
- v-model="userinfo.un"
|
|
|
- class="add_input"
|
|
|
- ></el-input>
|
|
|
+ <el-input placeholder="请输入学生账号" clearable v-model="userinfo.un" class="add_input"></el-input>
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="所属学校" :label-width="formLabelWidth">
|
|
|
- <el-input
|
|
|
- disabled
|
|
|
- style="width: 300px"
|
|
|
- v-model="schoolName"
|
|
|
- ></el-input>
|
|
|
+ <el-input disabled style="width: 300px" v-model="schoolName"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="班级" :label-width="formLabelWidth">
|
|
|
- <el-select v-model="userinfo.classid" placeholder="请选择班级">
|
|
|
- <el-option
|
|
|
- v-for="(item, index) in classJuri"
|
|
|
- :key="index"
|
|
|
- :label="item.name"
|
|
|
- :value="item.id"
|
|
|
- ></el-option>
|
|
|
+ <el-select multiple collapse-tags v-model="userinfo.classid" placeholder="请选择班级">
|
|
|
+ <el-option v-for="(item, index) in classJuri" :key="index" :label="item.name" :value="item.id"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<div style="text-align: center; color: #adb3b7">
|
|
@@ -405,21 +218,11 @@
|
|
|
<el-button class="right" @click="updateStudent">修改</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
- <el-dialog
|
|
|
- title="添加班级"
|
|
|
- :visible.sync="dialogVisible"
|
|
|
- :append-to-body="true"
|
|
|
- width="25%"
|
|
|
- :before-close="handleClose"
|
|
|
- class="dialog_diy"
|
|
|
- >
|
|
|
+ <el-dialog title="添加班级" :visible.sync="dialogVisible" :append-to-body="true" width="25%" :before-close="handleClose"
|
|
|
+ class="dialog_diy">
|
|
|
<el-form>
|
|
|
<el-form-item label="班级名称" :label-width="formLabelWidth">
|
|
|
- <el-input
|
|
|
- v-model="className"
|
|
|
- auto-complete="off"
|
|
|
- placeholder="请输入班级..."
|
|
|
- ></el-input>
|
|
|
+ <el-input v-model="className" auto-complete="off" placeholder="请输入班级..."></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
@@ -427,21 +230,11 @@
|
|
|
<el-button type="primary" @click="insertClass">确 定</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
- <el-dialog
|
|
|
- title="修改班级"
|
|
|
- :visible.sync="dialogVisible1"
|
|
|
- :append-to-body="true"
|
|
|
- width="25%"
|
|
|
- :before-close="handleClose"
|
|
|
- class="dialog_diy"
|
|
|
- >
|
|
|
+ <el-dialog title="修改班级" :visible.sync="dialogVisible1" :append-to-body="true" width="25%" :before-close="handleClose"
|
|
|
+ class="dialog_diy">
|
|
|
<el-form>
|
|
|
<el-form-item label="班级名称" :label-width="formLabelWidth">
|
|
|
- <el-input
|
|
|
- v-model="className1"
|
|
|
- auto-complete="off"
|
|
|
- placeholder="请输入班级..."
|
|
|
- ></el-input>
|
|
|
+ <el-input v-model="className1" auto-complete="off" placeholder="请输入班级..."></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
@@ -449,10 +242,58 @@
|
|
|
<el-button type="primary" @click="updateClass">确 定</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
+ <el-dialog title="添加学生" :visible.sync="dialogVisibleMember" :append-to-body="true" width="500px" height="80%"
|
|
|
+ :before-close="handleClose" class="addNewPP">
|
|
|
+ <div class="people">
|
|
|
+ <div class="people_top">
|
|
|
+ <div class="people_top_right">
|
|
|
+ <div class="people_search">
|
|
|
+ <el-input placeholder="搜索学生姓名" v-model="searchTN" @keyup.enter.native="getClassStudent"></el-input>
|
|
|
+ <div class="search_img" @click="getClassStudent">
|
|
|
+ <img src="../../assets/icon/search.png" alt />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="people_nav">选择成员</div>
|
|
|
+ </div>
|
|
|
+ <div class="t_j_box" style="
|
|
|
+ padding: 20px 0 0 25px;
|
|
|
+ width: calc(100% - 55px);
|
|
|
+ margin-left: 25px;
|
|
|
+ ">
|
|
|
+ <span>姓名</span>
|
|
|
+ <span>账号</span>
|
|
|
+ </div>
|
|
|
+ <el-checkbox-group v-model="checkboxList3" class="people_name" v-if="teacherJuri.length" v-loading="isLoading2">
|
|
|
+ <el-checkbox v-for="item in teacherJuri" :key="item.userid" :label="item.userid">
|
|
|
+ <div class="t_j_box">
|
|
|
+ <el-tooltip placement="top" :content="item.name ? item.name : '暂无姓名'">
|
|
|
+ <span>{{ item.name ? item.name : "暂无姓名" }}</span>
|
|
|
+ </el-tooltip>
|
|
|
+ <el-tooltip placement="top" :content="item.username">
|
|
|
+ <span>{{ item.username }}</span>
|
|
|
+ </el-tooltip>
|
|
|
+ </div>
|
|
|
+ </el-checkbox>
|
|
|
+ </el-checkbox-group>
|
|
|
+ <div style="text-align: center; margin-top: 10px" v-else>暂无数据</div>
|
|
|
+ </div>
|
|
|
+ <div style="margin-top: 10px;">
|
|
|
+ <el-pagination background layout="prev, pager, next" :page-size="pageSize3" :total="total3"
|
|
|
+ v-if="page3 && teacherJuri.length" style="padding-bottom: 20px"
|
|
|
+ @current-change="handleCurrentChange3"></el-pagination>
|
|
|
+ </div>
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button @click="dialogVisibleMember = false">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="addClassStudent">确定</el-button>
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import TaskListHeader from 'gantt-elastic/src/components/TaskList/TaskListHeader.vue';
|
|
|
+
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
@@ -475,8 +316,8 @@ export default {
|
|
|
total2: 0,
|
|
|
userid: this.$route.query.userid,
|
|
|
oid: this.$route.query.oid,
|
|
|
- cid:"",
|
|
|
- ctype:1,
|
|
|
+ cid: "",
|
|
|
+ ctype: 1,
|
|
|
sName: "",
|
|
|
sPhone: "",
|
|
|
sId: "",
|
|
@@ -486,8 +327,16 @@ export default {
|
|
|
classJuri: [],
|
|
|
userinfo: {},
|
|
|
userinfoA: {},
|
|
|
- sPhoneUser:"",
|
|
|
+ sPhoneUser: "",
|
|
|
tx: require("../../assets/avatar.png"),
|
|
|
+ dialogVisibleMember: false,
|
|
|
+ checkboxList3: [],
|
|
|
+ teacherJuri: [],
|
|
|
+ pageSize3: 10,
|
|
|
+ total3: 0,
|
|
|
+ page3: 1,
|
|
|
+ isLoading2: false,
|
|
|
+ searchTN: "",
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
@@ -591,7 +440,7 @@ export default {
|
|
|
let params = {
|
|
|
id: this.classid,
|
|
|
n: this.className1,
|
|
|
- oid:this.oid,
|
|
|
+ oid: this.oid,
|
|
|
};
|
|
|
this.ajax
|
|
|
.get(this.$store.state.api + "updateClass", params)
|
|
@@ -671,13 +520,16 @@ export default {
|
|
|
console.error(err);
|
|
|
});
|
|
|
})
|
|
|
- .catch(() => {});
|
|
|
+ .catch(() => { });
|
|
|
}
|
|
|
},
|
|
|
addStudent() {
|
|
|
- this.dialogVisibleAddStudent = true;
|
|
|
- (this.sName = ""), (this.sPhone = ""), (this.sByClass = ""), this.sMail;
|
|
|
- this.getClass2();
|
|
|
+ // this.dialogVisibleAddStudent = true;
|
|
|
+ // (this.sName = ""), (this.sPhone = ""), (this.sByClass = ""), this.sMail;
|
|
|
+ // this.getClass2();
|
|
|
+ this.dialogVisibleMember = true
|
|
|
+ this.searchTN = ""
|
|
|
+ this.getClassStudent();
|
|
|
},
|
|
|
//新增学生
|
|
|
insertStudent() {
|
|
@@ -773,6 +625,7 @@ export default {
|
|
|
updateStudentA(res) {
|
|
|
this.userinfo = JSON.parse(JSON.stringify(res));
|
|
|
this.userinfoA = JSON.parse(JSON.stringify(res));
|
|
|
+ this.userinfo.classid = this.userinfo.classid.split(",")
|
|
|
this.dialogVisibleUpdate = true;
|
|
|
},
|
|
|
updateStudent() {
|
|
@@ -825,7 +678,7 @@ export default {
|
|
|
alias: this.userinfo.name,
|
|
|
ph: this.userinfo.phonenumber,
|
|
|
sid: this.userinfo.studentid,
|
|
|
- cid: this.userinfo.classid,
|
|
|
+ cid: this.userinfo.classid.join(","),
|
|
|
},
|
|
|
];
|
|
|
this.ajax
|
|
@@ -847,8 +700,32 @@ export default {
|
|
|
console.error(err);
|
|
|
});
|
|
|
},
|
|
|
- //获取班级列表
|
|
|
- getClass2() {
|
|
|
+ deleteClassStudent(id) {
|
|
|
+ let params = [{ uid: id, cid: this.cid }];
|
|
|
+ this.$confirm("确定移除此学生在本班级吗?", "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.ajax
|
|
|
+ .post(this.$store.state.api + "deleteClassStudent", params)
|
|
|
+ .then((res) => {
|
|
|
+ this.$message({
|
|
|
+ message: "操作成功",
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+ this.getStudent(this.cid);
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ this.$message.error("操作失败");
|
|
|
+ console.error(err);
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch(() => { });
|
|
|
+ },
|
|
|
+ //获取班级列表
|
|
|
+ getClass2() {
|
|
|
this.isLoading = true;
|
|
|
let params = {
|
|
|
oid: this.oid,
|
|
@@ -885,6 +762,10 @@ export default {
|
|
|
this.page2 = val;
|
|
|
this.getStudent(this.cid);
|
|
|
},
|
|
|
+ handleCurrentChange3(val) {
|
|
|
+ this.page3 = val;
|
|
|
+ this.getClassStudent();
|
|
|
+ },
|
|
|
getStudent(cid) {
|
|
|
this.cid = cid
|
|
|
this.ctype = 2
|
|
@@ -909,6 +790,47 @@ export default {
|
|
|
console.error(err);
|
|
|
});
|
|
|
},
|
|
|
+ getClassStudent() {
|
|
|
+ this.isLoading2 = true;
|
|
|
+ let params = {
|
|
|
+ oid: this.oid,
|
|
|
+ cid: this.cid,
|
|
|
+ cn: this.searchTN,
|
|
|
+ page: this.page3,
|
|
|
+ num: this.pageSize3,
|
|
|
+ };
|
|
|
+ this.ajax
|
|
|
+ .get(this.$store.state.api + "getClassStudent", params)
|
|
|
+ .then((res) => {
|
|
|
+ this.isLoading2 = false;
|
|
|
+ this.total3 = res.data[0].length > 0 ? res.data[0][0].num : 0;
|
|
|
+ this.teacherJuri = res.data[0];
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ this.isLoading2 = false;
|
|
|
+ console.error(err);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ addClassStudent() {
|
|
|
+ if (!this.checkboxList3.length) {
|
|
|
+ this.$message.error('请选择要添加班级的学生');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ let params = [{
|
|
|
+ cid: this.cid,
|
|
|
+ student: JSON.stringify(this.checkboxList3)
|
|
|
+ }];
|
|
|
+ this.ajax
|
|
|
+ .post(this.$store.state.api + "addClassStudent", params)
|
|
|
+ .then((res) => {
|
|
|
+ this.checkboxList3 = []
|
|
|
+ this.dialogVisibleMember = false
|
|
|
+ this.getStudent(this.cid)
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ console.error(err);
|
|
|
+ });
|
|
|
+ },
|
|
|
iniPassword(id) {
|
|
|
let params = [
|
|
|
{
|
|
@@ -933,61 +855,76 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
-.dialog_diy >>> .el-dialog__header {
|
|
|
+.dialog_diy>>>.el-dialog__header {
|
|
|
background: #3d67bc !important;
|
|
|
padding: 15px 20px;
|
|
|
}
|
|
|
-.dialog_diy >>> .el-dialog__title {
|
|
|
+
|
|
|
+.dialog_diy>>>.el-dialog__title {
|
|
|
color: #fff;
|
|
|
}
|
|
|
-.student_table >>> .el-table--border td {
|
|
|
+
|
|
|
+.student_table>>>.el-table--border td {
|
|
|
border-right: 0px !important;
|
|
|
}
|
|
|
-.dialog_diy >>> .el-dialog__headerbtn {
|
|
|
+
|
|
|
+.dialog_diy>>>.el-dialog__headerbtn {
|
|
|
top: 19px;
|
|
|
}
|
|
|
-.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close {
|
|
|
+
|
|
|
+.dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
|
|
|
color: #fff;
|
|
|
}
|
|
|
-.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover {
|
|
|
+
|
|
|
+.dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
|
|
|
color: #fff;
|
|
|
}
|
|
|
-.student_head >>> .el-button--primary {
|
|
|
+
|
|
|
+.student_head>>>.el-button--primary {
|
|
|
background-color: #2268bc;
|
|
|
}
|
|
|
+
|
|
|
.xls_button {
|
|
|
font-size: 14px;
|
|
|
cursor: pointer;
|
|
|
text-decoration: underline;
|
|
|
color: rgb(34, 104, 188);
|
|
|
}
|
|
|
+
|
|
|
.pb_head {
|
|
|
margin: 0 !important;
|
|
|
width: 100% !important;
|
|
|
}
|
|
|
+
|
|
|
.student_page {
|
|
|
margin-top: 10px;
|
|
|
}
|
|
|
+
|
|
|
.student_head {
|
|
|
margin-top: 10px;
|
|
|
padding-bottom: 15px;
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
}
|
|
|
+
|
|
|
.student_search {
|
|
|
display: flex;
|
|
|
width: 300px;
|
|
|
}
|
|
|
+
|
|
|
.student_search span {
|
|
|
margin: 0 10px 0 0;
|
|
|
}
|
|
|
+
|
|
|
.student_button {
|
|
|
display: flex;
|
|
|
height: 40px;
|
|
|
}
|
|
|
+
|
|
|
.student_button .el-button--primary {
|
|
|
/* margin-right: 10px; */
|
|
|
}
|
|
|
+
|
|
|
.upload-demo {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
@@ -996,11 +933,12 @@ export default {
|
|
|
width: 100px;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
+
|
|
|
.student_table {
|
|
|
margin: 20px 0;
|
|
|
}
|
|
|
|
|
|
-.el-table >>> .even_row {
|
|
|
+.el-table>>>.even_row {
|
|
|
background-color: #f1f1f1;
|
|
|
}
|
|
|
|
|
@@ -1012,8 +950,9 @@ export default {
|
|
|
.bgColor {
|
|
|
background: #2167bc;
|
|
|
}
|
|
|
-.student_table >>> .el-table,
|
|
|
-.student_table >>> .el-table__body-wrapper {
|
|
|
+
|
|
|
+.student_table>>>.el-table,
|
|
|
+.student_table>>>.el-table__body-wrapper {
|
|
|
height: auto !important;
|
|
|
}
|
|
|
|
|
@@ -1036,7 +975,7 @@ export default {
|
|
|
align-items: baseline;
|
|
|
}
|
|
|
|
|
|
-.student_input >>> .el-input__inner {
|
|
|
+.student_input>>>.el-input__inner {
|
|
|
width: 190px;
|
|
|
font-size: 13px;
|
|
|
padding: 0 10px;
|
|
@@ -1047,13 +986,13 @@ export default {
|
|
|
background: #2268bc;
|
|
|
}
|
|
|
|
|
|
-.head_right > button:nth-child(1) {
|
|
|
+.head_right>button:nth-child(1) {
|
|
|
color: #fff;
|
|
|
background: #2268bc;
|
|
|
}
|
|
|
|
|
|
|
|
|
-.head_right > div {
|
|
|
+.head_right>div {
|
|
|
line-height: 40px;
|
|
|
margin-left: 10px;
|
|
|
color: #2a6dbe;
|
|
@@ -1080,8 +1019,8 @@ export default {
|
|
|
margin-left: 10px;
|
|
|
}
|
|
|
|
|
|
-.tx > img,
|
|
|
-.delete > img {
|
|
|
+.tx>img,
|
|
|
+.delete>img {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
}
|
|
@@ -1091,30 +1030,30 @@ export default {
|
|
|
align-items: center;
|
|
|
}
|
|
|
|
|
|
-.add_student >>> .el-dialog__header {
|
|
|
+.add_student>>>.el-dialog__header {
|
|
|
padding: 20px 20px 10px;
|
|
|
text-align: center;
|
|
|
background: #32455b;
|
|
|
}
|
|
|
|
|
|
-.add_student >>> .el-dialog__title {
|
|
|
+.add_student>>>.el-dialog__title {
|
|
|
font-size: 14px !important;
|
|
|
color: #fff !important;
|
|
|
}
|
|
|
|
|
|
-.add_student >>> .el-dialog__headerbtn {
|
|
|
+.add_student>>>.el-dialog__headerbtn {
|
|
|
font-size: 20px !important;
|
|
|
}
|
|
|
|
|
|
-.add_student >>> .el-form-item__label {
|
|
|
+.add_student>>>.el-form-item__label {
|
|
|
margin-left: 65px;
|
|
|
}
|
|
|
|
|
|
-.add_student >>> .el-form-item {
|
|
|
+.add_student>>>.el-form-item {
|
|
|
display: flex;
|
|
|
}
|
|
|
|
|
|
-.add_student >>> .el-form-item__content {
|
|
|
+.add_student>>>.el-form-item__content {
|
|
|
margin: 0 !important;
|
|
|
}
|
|
|
|
|
@@ -1122,7 +1061,7 @@ export default {
|
|
|
width: 365px;
|
|
|
}
|
|
|
|
|
|
-.add_student >>> .el-dialog__footer {
|
|
|
+.add_student>>>.el-dialog__footer {
|
|
|
text-align: center !important;
|
|
|
}
|
|
|
|
|
@@ -1141,7 +1080,7 @@ export default {
|
|
|
width: 30px;
|
|
|
}
|
|
|
|
|
|
-.logoImg > img {
|
|
|
+.logoImg>img {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
}
|
|
@@ -1155,7 +1094,7 @@ export default {
|
|
|
line-height: 0px !important;
|
|
|
}
|
|
|
|
|
|
-.upload-demo >>> .el-button {
|
|
|
+.upload-demo>>>.el-button {
|
|
|
color: #fff;
|
|
|
background: #2268bc;
|
|
|
width: 70px;
|
|
@@ -1164,4 +1103,105 @@ export default {
|
|
|
font-size: 12px;
|
|
|
line-height: 0 !important;
|
|
|
}
|
|
|
+
|
|
|
+.people {
|
|
|
+ border: 1px solid rgb(229 229 229);
|
|
|
+ height: 495px;
|
|
|
+ border-radius: 5px;
|
|
|
+ width: 100%;
|
|
|
+ overflow: auto;
|
|
|
+}
|
|
|
+
|
|
|
+.people_top {
|
|
|
+ display: flex;
|
|
|
+ width: 100%;
|
|
|
+ /* justify-content: space-between; */
|
|
|
+ /* align-items: center; */
|
|
|
+ flex-direction: column;
|
|
|
+ padding: 10px 25px 0;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+.people_nav,
|
|
|
+.people_top_right {
|
|
|
+ /* padding: 20px 0 0 20px; */
|
|
|
+}
|
|
|
+
|
|
|
+.people_top_right {
|
|
|
+ height: 40px;
|
|
|
+ margin-bottom: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+.people_search {
|
|
|
+ display: flex;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+.people_search>>>.el-input__inner {
|
|
|
+ /* height: 25px; */
|
|
|
+ width: 95%;
|
|
|
+}
|
|
|
+
|
|
|
+.search_img {
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ position: absolute;
|
|
|
+ right: 30px;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+}
|
|
|
+
|
|
|
+.search_img>img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.people_name {
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-start;
|
|
|
+ padding: 10px 0 0 25px;
|
|
|
+ flex-direction: column;
|
|
|
+ flex-wrap: nowrap;
|
|
|
+ height: calc(100% - 140px);
|
|
|
+ overflow-y: auto;
|
|
|
+ overflow-x: hidden;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
+
|
|
|
+.people_name>>>.el-checkbox {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ margin-bottom: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+.people_name>>>.el-checkbox__label {
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ overflow: hidden;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.addNewPP>>>.el-dialog__body {
|
|
|
+ padding: 5px 20px;
|
|
|
+}
|
|
|
+
|
|
|
+.t_j_box {
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+
|
|
|
+.t_j_box span:nth-child(1) {
|
|
|
+ width: 50%;
|
|
|
+ overflow: hidden;
|
|
|
+ margin-right: 10px;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+}
|
|
|
+
|
|
|
+.t_j_box span:nth-child(2) {
|
|
|
+ width: 50%;
|
|
|
+ overflow: hidden;
|
|
|
+ margin-right: 10px;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+}
|
|
|
</style>
|