class.vue 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395
  1. <template>
  2. <div class="pb_content" style="background: unset">
  3. <div v-if="ctype == 1" class="pb_content_body" style="
  4. background: #fff;
  5. padding: 0px 25px;
  6. box-sizing: border-box;
  7. border-radius: 5px;
  8. ">
  9. <div class="pb_head top">
  10. <div style="
  11. display: flex;
  12. align-items: center;
  13. ">
  14. <span class="subClick" @click="
  15. goTo(
  16. '/student?userid=' +
  17. userid +
  18. '&oid=' +
  19. oid +
  20. '&org=' +
  21. org +
  22. '&role=' +
  23. role
  24. )
  25. ">学生管理</span>
  26. <span class="sub_head">班级管理</span>
  27. <span class="subClick" @click="
  28. goTo(
  29. '/grade?userid=' +
  30. userid +
  31. '&oid=' +
  32. oid +
  33. '&org=' +
  34. org +
  35. '&role=' +
  36. role
  37. )
  38. ">年级管理</span>
  39. </div>
  40. <div style="border-radius: 4px;">
  41. <el-button type="primary" class="bgColor student_button" @click="dialogVisible = true">添加班级</el-button>
  42. </div>
  43. </div>
  44. <div class="student_head">
  45. <div class="student_search">
  46. <span>
  47. <el-input placeholder="请输入班级名称" v-model="sClassName" clearable class="student_input">
  48. </el-input>
  49. </span>
  50. <el-button type="primary" @click="searchClass" class="student_button">查询</el-button>
  51. </div>
  52. </div>
  53. </div>
  54. <div class="pb_content_body" v-if="ctype == 1">
  55. <div class="student_table">
  56. <el-table v-if="ctype == 1" ref="table" :key="1" :data="tableData" border :height="tableHeight" :fit="true"
  57. v-loading="isLoading" style="width: 100%; height: 60%" :header-cell-style="{ background: '#f1f1f1' }"
  58. :row-class-name="tableRowClassName">
  59. <el-table-column prop="name" label="班级名称" align="center">
  60. </el-table-column>
  61. <el-table-column label="所属年级" align="center">
  62. <template slot-scope="{row}">
  63. {{ getGrade(row.pid) }}
  64. </template>
  65. </el-table-column>
  66. <el-table-column prop="pnum" label="人数" align="center">
  67. </el-table-column>
  68. <el-table-column label="操作" width="400px">
  69. <template slot-scope="scope">
  70. <el-button type="primary" size="small" @click="getStudent(scope.row.id)">查看学生</el-button>
  71. <el-button type="primary" size="small" @click="updateG(scope.row.pid, scope.row.id)">修改年级</el-button>
  72. <el-button type="primary" size="small" @click="openUpdate(scope.row.id, scope.row.name)">修改名称</el-button>
  73. <el-button type="primary" size="small" @click="deleteClass(scope.row.id)">删除</el-button>
  74. </template>
  75. </el-table-column>
  76. </el-table>
  77. </div>
  78. <div class="student_page">
  79. <el-pagination background layout="prev, pager, next" :page-size="10" :total="total" v-if="page"
  80. @current-change="handleCurrentChange">
  81. </el-pagination>
  82. </div>
  83. </div>
  84. <div v-if="ctype == 2" class="pb_content_body" style="
  85. background: #fff;
  86. padding: 0px 25px;
  87. box-sizing: border-box;
  88. border-radius: 5px;
  89. ">
  90. <div class="pb_head top">
  91. <span>查看学生</span>
  92. <div style="border-radius: 4px;">
  93. <el-button type="primary" class="bgColor student_button" @click="ctype = 1, getClass()">返回</el-button>
  94. </div>
  95. </div>
  96. <div class="student_head">
  97. <div class="head_left">
  98. <el-input v-model="sPhoneUser" class="student_input" placeholder="请输入用户名"></el-input>
  99. <el-select disabled v-model="cid" placeholder="请选择班级" class="student_input" @change="searchStudent">
  100. <el-option label="所有人" value=""></el-option>
  101. <el-option v-for="(item, index) in classJuri" :key="index" :label="item.name" :value="item.id"></el-option>
  102. </el-select>
  103. <el-button type="primary" class="student_button" @click="searchStudent">查询</el-button>
  104. </div>
  105. <div class="head_right">
  106. <el-button @click="addStudent" class="student_button">添加学生</el-button>
  107. </div>
  108. </div>
  109. </div>
  110. <div class="pb_content_body" v-if="ctype == 2">
  111. <div class="student_table">
  112. <el-table v-if="ctype == 2" :key="2" ref="table2" :data="tableData2" border :height="tableHeight" :fit="true"
  113. v-loading="isLoading" style="width: 100%" :header-cell-style="{ background: '#f1f1f1', fontSize: '17px' }"
  114. :row-class-name="tableRowClassName">
  115. <el-table-column label="姓名" min-width="10" align="center">
  116. <template slot-scope="scope">
  117. <div class="userImg">
  118. <div class="tx">
  119. <img :src="scope.row.headportrait != null
  120. ? scope.row.headportrait
  121. : tx
  122. " alt />
  123. </div>
  124. <div style="
  125. width: 150px;
  126. text-align: left;
  127. white-space: nowrap;
  128. overflow: hidden;
  129. text-overflow: ellipsis;
  130. ">
  131. {{ scope.row.name }}
  132. </div>
  133. </div>
  134. </template>
  135. </el-table-column>
  136. <el-table-column label="学生账号" min-width="15" align="center">
  137. <template slot-scope="scope">
  138. <div>{{ scope.row.un ? scope.row.un : "" }}</div>
  139. </template>
  140. </el-table-column>
  141. <el-table-column prop="classname2" label="班级" min-width="15" align="center">
  142. </el-table-column>
  143. <el-table-column label="操作" width="250px">
  144. <template slot-scope="scope">
  145. <div class="btnBox">
  146. <el-button class="de_button" type="primary" size="small"
  147. @click="iniPassword(scope.row.userid)">初始化密码</el-button>
  148. <el-button class="de_button" type="primary" size="small" @click="updateStudentA(scope.row)">修改</el-button>
  149. <el-button class="de_button" type="primary" size="small"
  150. @click="deleteClassStudent(scope.row.userid)">移除</el-button>
  151. <!-- <div class="delete">
  152. <img src="../../assets/remove.png" alt @click="deleteStudent(scope.row.userid, scope.row.state)" />
  153. </div> -->
  154. </div>
  155. </template>
  156. </el-table-column>
  157. </el-table>
  158. </div>
  159. <div class="student_page">
  160. <el-pagination background layout="prev, pager, next" :page-size="10" :total="total2" v-if="page2"
  161. @current-change="handleCurrentChange2"></el-pagination>
  162. </div>
  163. </div>
  164. <el-dialog :visible.sync="dialogVisibleAddStudent" :append-to-body="true" width="700px" :before-close="handleClose"
  165. class="add_student">
  166. <div slot="title" class="header-title">
  167. <div class="logoImg">
  168. <img src="../../assets/logo.png" alt />
  169. </div>
  170. <div class="title_add_student">添加学生</div>
  171. </div>
  172. <el-form>
  173. <el-form-item label="学生姓名" :label-width="formLabelWidth">
  174. <span>
  175. <el-input placeholder="请输入学生姓名" clearable v-model="sName" class="add_input"></el-input>
  176. </span>
  177. </el-form-item>
  178. <el-form-item label="学生学号" :label-width="formLabelWidth">
  179. <span>
  180. <el-input placeholder="请输入学生学号" clearable v-model="sId" class="add_input"></el-input>
  181. </span>
  182. </el-form-item>
  183. <el-form-item label="学生手机号" :label-width="formLabelWidth">
  184. <span>
  185. <el-input placeholder="请输入学生手机号" clearable v-model="sPhone" class="add_input"></el-input>
  186. </span>
  187. </el-form-item>
  188. <el-form-item label="学生账号" :label-width="formLabelWidth">
  189. <span>
  190. <el-input placeholder="请输入学生账号" clearable v-model="sMail" class="add_input"></el-input>
  191. </span>
  192. </el-form-item>
  193. <el-form-item label="所属学校" :label-width="formLabelWidth">
  194. <el-input disabled style="width: 300px" v-model="schoolName"></el-input>
  195. </el-form-item>
  196. <el-form-item label="班级" :label-width="formLabelWidth">
  197. <el-select v-model="cid" placeholder="请选择班级" disabled>
  198. <el-option v-for="(item, index) in classJuri" :key="index" :label="item.name" :value="item.id"></el-option>
  199. </el-select>
  200. </el-form-item>
  201. <div style="text-align: center; color: #adb3b7">
  202. 注:添加学生的账号密码为123456
  203. </div>
  204. </el-form>
  205. <span slot="footer" class="dialog-footer flex">
  206. <el-button class="right" @click="insertStudent">确认</el-button>
  207. </span>
  208. </el-dialog>
  209. <el-dialog :visible.sync="dialogVisibleUpdate" :append-to-body="true" width="700px" :before-close="handleClose"
  210. class="add_student">
  211. <div slot="title" class="header-title">
  212. <div class="logoImg">
  213. <img src="../../assets/logo.png" alt />
  214. </div>
  215. <div class="title_add_student">修改学生</div>
  216. </div>
  217. <el-form>
  218. <el-form-item label="学生名称" :label-width="formLabelWidth">
  219. <span>
  220. <el-input placeholder="请输入学生姓名" clearable v-model="userinfo.name" class="add_input"></el-input>
  221. </span>
  222. </el-form-item>
  223. <el-form-item label="学生学号" :label-width="formLabelWidth">
  224. <span>
  225. <el-input placeholder="请输入学生学号" clearable v-model="userinfo.studentid" class="add_input"></el-input>
  226. </span>
  227. </el-form-item>
  228. <el-form-item label="学生手机号" :label-width="formLabelWidth">
  229. <span>
  230. <el-input placeholder="请输入学生手机号" clearable v-model="userinfo.phonenumber" class="add_input"></el-input>
  231. </span>
  232. </el-form-item>
  233. <el-form-item label="学生账号" :label-width="formLabelWidth">
  234. <span>
  235. <el-input placeholder="请输入学生账号" clearable v-model="userinfo.un" class="add_input"></el-input>
  236. </span>
  237. </el-form-item>
  238. <el-form-item label="所属学校" :label-width="formLabelWidth">
  239. <el-input disabled style="width: 300px" v-model="schoolName"></el-input>
  240. </el-form-item>
  241. <el-form-item label="班级" :label-width="formLabelWidth">
  242. <el-select multiple collapse-tags v-model="userinfo.classid" placeholder="请选择班级">
  243. <el-option v-for="(item, index) in classJuri" :key="index" :label="item.name" :value="item.id"></el-option>
  244. </el-select>
  245. </el-form-item>
  246. <div style="text-align: center; color: #adb3b7">
  247. 注:添加学生的账号密码为123456
  248. </div>
  249. </el-form>
  250. <span slot="footer" class="dialog-footer flex">
  251. <el-button class="right" @click="updateStudent">修改</el-button>
  252. </span>
  253. </el-dialog>
  254. <el-dialog title="添加班级" :visible.sync="dialogVisible" :append-to-body="true" width="25%" :before-close="handleClose"
  255. class="dialog_diy">
  256. <el-form>
  257. <el-form-item label="班级名称" :label-width="formLabelWidth">
  258. <el-input v-model="className" auto-complete="off" placeholder="请输入班级..."></el-input>
  259. </el-form-item>
  260. </el-form>
  261. <span slot="footer" class="dialog-footer">
  262. <el-button @click="dialogVisible = false">取 消</el-button>
  263. <el-button type="primary" @click="insertClass">确 定</el-button>
  264. </span>
  265. </el-dialog>
  266. <el-dialog title="修改年级" :visible.sync="dialogVisibleGrade" :append-to-body="true" width="25%"
  267. :before-close="handleClose" class="dialog_diy">
  268. <el-form>
  269. <el-form-item label="选择年级" :label-width="formLabelWidth">
  270. <el-select v-model="gid" placeholder="请选择班级" class="student_input" clearable>
  271. <el-option v-for="(item, index) in grade" :key="index" :label="item.name" :value="item.id"></el-option>
  272. </el-select>
  273. </el-form-item>
  274. </el-form>
  275. <span slot="footer" class="dialog-footer">
  276. <el-button @click="dialogVisibleGrade = false">取 消</el-button>
  277. <el-button type="primary" @click="updateGrade">确 定</el-button>
  278. </span>
  279. </el-dialog>
  280. <el-dialog title="修改班级" :visible.sync="dialogVisible1" :append-to-body="true" width="25%" :before-close="handleClose"
  281. class="dialog_diy">
  282. <el-form>
  283. <el-form-item label="班级名称" :label-width="formLabelWidth">
  284. <el-input v-model="className1" auto-complete="off" placeholder="请输入班级..."></el-input>
  285. </el-form-item>
  286. </el-form>
  287. <span slot="footer" class="dialog-footer">
  288. <el-button @click="dialogVisible1 = false">取 消</el-button>
  289. <el-button type="primary" @click="updateClass">确 定</el-button>
  290. </span>
  291. </el-dialog>
  292. <el-dialog title="添加学生" :visible.sync="dialogVisibleMember" :append-to-body="true" width="500px" height="80%"
  293. :before-close="handleClose" class="addNewPP">
  294. <div class="people">
  295. <div class="people_top">
  296. <div class="people_top_right">
  297. <div class="people_search">
  298. <el-input placeholder="搜索学生姓名" v-model="searchTN" @keyup.enter.native="getClassStudent"></el-input>
  299. <div class="search_img" @click="getClassStudent">
  300. <img src="../../assets/icon/search.png" alt />
  301. </div>
  302. </div>
  303. </div>
  304. <div class="people_nav">选择成员</div>
  305. </div>
  306. <div class="t_j_box" style="
  307. padding: 20px 0 0 25px;
  308. width: calc(100% - 55px);
  309. margin-left: 25px;
  310. ">
  311. <span>姓名</span>
  312. <span>账号</span>
  313. </div>
  314. <el-checkbox-group v-model="checkboxList3" class="people_name" v-if="teacherJuri.length" v-loading="isLoading2">
  315. <el-checkbox v-for="item in teacherJuri" :key="item.userid" :label="item.userid">
  316. <div class="t_j_box">
  317. <el-tooltip placement="top" :content="item.name ? item.name : '暂无姓名'">
  318. <span>{{ item.name ? item.name : "暂无姓名" }}</span>
  319. </el-tooltip>
  320. <el-tooltip placement="top" :content="item.username">
  321. <span>{{ item.username }}</span>
  322. </el-tooltip>
  323. </div>
  324. </el-checkbox>
  325. </el-checkbox-group>
  326. <div style="text-align: center; margin-top: 10px" v-else>暂无数据</div>
  327. </div>
  328. <div style="margin-top: 10px;">
  329. <el-pagination background layout="prev, pager, next" :page-size="pageSize3" :total="total3"
  330. v-if="page3 && teacherJuri.length" style="padding-bottom: 20px"
  331. @current-change="handleCurrentChange3"></el-pagination>
  332. </div>
  333. <span slot="footer" class="dialog-footer">
  334. <el-button @click="dialogVisibleMember = false">取 消</el-button>
  335. <el-button type="primary" @click="addClassStudent">确定</el-button>
  336. </span>
  337. </el-dialog>
  338. </div>
  339. </template>
  340. <script>
  341. import TaskListHeader from 'gantt-elastic/src/components/TaskList/TaskListHeader.vue';
  342. export default {
  343. data() {
  344. return {
  345. tableHeight: "500px",
  346. isLoading: false,
  347. formLabelWidth: "100px",
  348. sClassName: "",
  349. className: "",
  350. className1: "",
  351. classid: "",
  352. dialogVisible: false,
  353. dialogVisible1: false,
  354. dialogVisibleUpdate: false,
  355. dialogVisibleAddStudent: false,
  356. tableData: [],
  357. page: 1,
  358. total: 0,
  359. tableData2: [],
  360. page2: 1,
  361. total2: 0,
  362. userid: this.$route.query.userid,
  363. org: this.$route.query.org,
  364. oid: this.$route.query.oid,
  365. role: this.$route.query.role,
  366. cid: "",
  367. ctype: 1,
  368. sName: "",
  369. sPhone: "",
  370. sId: "",
  371. schoolName: "",
  372. sByClass: "",
  373. sMail: "",
  374. classJuri: [],
  375. userinfo: {},
  376. userinfoA: {},
  377. sPhoneUser: "",
  378. tx: require("../../assets/avatar.png"),
  379. dialogVisibleMember: false,
  380. checkboxList3: [],
  381. teacherJuri: [],
  382. pageSize3: 10,
  383. total3: 0,
  384. page3: 1,
  385. isLoading2: false,
  386. searchTN: "",
  387. grade: [],
  388. gid: "",
  389. dialogVisibleGrade: false
  390. };
  391. },
  392. created() {
  393. this.page = 1;
  394. this.getClass();
  395. this.getClass2();
  396. this.selectGrage()
  397. this.getSchoolName();
  398. },
  399. computed: {
  400. getGrade() {
  401. return function (gid) {
  402. let name = ''
  403. this.grade.forEach(element => {
  404. if (element.id == gid) {
  405. name = element.name
  406. }
  407. });
  408. return name ? name : '暂无'
  409. }
  410. }
  411. },
  412. mounted() {
  413. this.$nextTick(function () {
  414. this.tableHeight =
  415. window.innerHeight - this.$refs.table.$el.offsetTop - 200;
  416. if (this.tableHeight <= 530) {
  417. this.tableHeight = 530;
  418. }
  419. // 监听窗口大小变化
  420. let self = this;
  421. window.onresize = function () {
  422. self.tableHeight =
  423. window.innerHeight - self.$refs.table.$el.offsetTop - 200;
  424. if (self.tableHeight <= 530) {
  425. self.tableHeight = 530;
  426. }
  427. };
  428. });
  429. },
  430. methods: {
  431. goTo(path) {
  432. this.$router.push(path);
  433. },
  434. //获取班级列表
  435. selectGrage() {
  436. let params = {
  437. oid: this.oid,
  438. };
  439. this.ajax
  440. .get(this.$store.state.api + "selectGrageBySchool", params)
  441. .then((res) => {
  442. this.grade = res.data[0];
  443. })
  444. .catch((err) => {
  445. this.isLoading = false;
  446. console.error(err);
  447. });
  448. },
  449. tableRowClassName({ row, rowIndex }) {
  450. if ((rowIndex + 1) % 2 === 0) {
  451. return "even_row";
  452. } else {
  453. return "";
  454. }
  455. },
  456. handleCurrentChange(val) {
  457. this.page = val;
  458. this.getClass();
  459. },
  460. handleClose(done) {
  461. done();
  462. },
  463. time() {
  464. if (!this.now) {
  465. this.now = new Date().getTime();
  466. return true;
  467. } else {
  468. let time = new Date().getTime();
  469. if (time - this.now > 3000) {
  470. this.now = time;
  471. return true;
  472. } else {
  473. return false;
  474. }
  475. }
  476. },
  477. searchClass() {
  478. this.page = 1;
  479. this.getClass();
  480. },
  481. updateG(gid, id) {
  482. this.gid = gid;
  483. this.classid = id;
  484. this.dialogVisibleGrade = true;
  485. },
  486. updateGrade() {
  487. this.$confirm("确定修改吗?", "提示", {
  488. confirmButtonText: "确定",
  489. cancelButtonText: "取消",
  490. type: "warning",
  491. })
  492. .then(() => {
  493. let params = [{
  494. cid: this.gid,
  495. student: JSON.stringify([this.classid])
  496. }];
  497. this.ajax
  498. .post(this.$store.state.api + "addGradeClass", params)
  499. .then((res) => {
  500. this.gid = '';
  501. this.classid = '';
  502. this.dialogVisibleGrade = false
  503. this.getClass();
  504. })
  505. .catch((err) => {
  506. console.error(err);
  507. });
  508. })
  509. .catch(() => { });
  510. },
  511. openUpdate(id, n) {
  512. this.classid = id;
  513. this.className1 = n;
  514. this.dialogVisible1 = true;
  515. },
  516. //新增班级
  517. insertClass() {
  518. let params = {
  519. name: this.className,
  520. oid: this.oid,
  521. uid: this.userid,
  522. };
  523. this.ajax
  524. .get(this.$store.state.api + "insertClass", params)
  525. .then((res) => {
  526. if (res.data[0] && res.data[0][0].classname == 1) {
  527. this.$message({
  528. message: "不能与其他班级名称相同!",
  529. type: "error",
  530. });
  531. } else {
  532. this.$message({
  533. message: "新增成功",
  534. type: "success",
  535. });
  536. this.dialogVisible = false;
  537. this.sClassName = "";
  538. this.getClass();
  539. this.className = "";
  540. }
  541. })
  542. .catch((err) => {
  543. this.$message({
  544. message: "新增失败",
  545. type: "error",
  546. });
  547. console.error(err);
  548. });
  549. },
  550. //修改班级
  551. updateClass() {
  552. let params = {
  553. id: this.classid,
  554. n: this.className1,
  555. oid: this.oid,
  556. };
  557. this.ajax
  558. .get(this.$store.state.api + "updateClass", params)
  559. .then((res) => {
  560. if (res.data[0] && res.data[0][0].classname == 1) {
  561. this.$message({
  562. message: "不能与其他班级名称相同!",
  563. type: "error",
  564. });
  565. } else {
  566. this.$message({
  567. message: "修改成功",
  568. type: "success",
  569. });
  570. this.dialogVisible1 = false;
  571. this.getClass();
  572. this.classid = "";
  573. this.className1 = "";
  574. }
  575. })
  576. .catch((err) => {
  577. this.$message({
  578. message: "修改失败",
  579. type: "error",
  580. });
  581. console.error(err);
  582. });
  583. },
  584. //获取班级列表
  585. getClass() {
  586. this.isLoading = true;
  587. let params = {
  588. // username: this.$store.state.userInfo.userid,
  589. cu: "",
  590. oid: this.oid,
  591. cn: this.sClassName,
  592. page: this.page,
  593. };
  594. this.ajax
  595. .get(this.$store.state.api + "selectClass", params)
  596. .then((res) => {
  597. this.isLoading = false;
  598. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  599. this.tableData = res.data[0];
  600. })
  601. .catch((err) => {
  602. this.isLoading = false;
  603. console.error(err);
  604. });
  605. },
  606. //删除班级
  607. deleteClass(id) {
  608. let params = {
  609. id: id,
  610. };
  611. if (this.time()) {
  612. this.$confirm("确定删除此班级吗?", "提示", {
  613. confirmButtonText: "确定",
  614. cancelButtonText: "取消",
  615. type: "warning",
  616. })
  617. .then(() => {
  618. this.ajax
  619. .get(this.$store.state.api + "deleteClass", params)
  620. .then((res) => {
  621. this.$message({
  622. message: "删除成功",
  623. type: "success",
  624. });
  625. if (this.page != 1 && this.tableData.length == 1) {
  626. this.page - 1;
  627. }
  628. this.getClass();
  629. })
  630. .catch((err) => {
  631. this.$message.error("删除失败");
  632. console.error(err);
  633. });
  634. })
  635. .catch(() => { });
  636. }
  637. },
  638. addStudent() {
  639. // this.dialogVisibleAddStudent = true;
  640. // (this.sName = ""), (this.sPhone = ""), (this.sByClass = ""), this.sMail;
  641. // this.getClass2();
  642. this.dialogVisibleMember = true
  643. this.searchTN = ""
  644. this.getClassStudent();
  645. },
  646. //新增学生
  647. insertStudent() {
  648. if (this.sName === "") {
  649. this.$message.error("学生姓名不能为空");
  650. return;
  651. } else if (
  652. this.sPhone != "" &&
  653. !/^[1][3,4,5,7,8][0-9]{9}$/.test(this.sPhone)
  654. ) {
  655. this.$message.error("手机号格式不正确");
  656. return;
  657. } else if (
  658. !/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/.test(this.sMail)
  659. ) {
  660. this.$message.error("邮箱格式不正确");
  661. return;
  662. }
  663. if (this.time()) {
  664. let params = { un: this.sMail };
  665. this.ajax
  666. .get(this.$store.state.api + "findMail", params)
  667. .then((res) => {
  668. if (res.data[0].length > 0) {
  669. this.$message.error("此学生账号已被注册");
  670. } else {
  671. this.add_Student();
  672. }
  673. })
  674. .catch((err) => {
  675. console.error(err);
  676. });
  677. }
  678. },
  679. add_Student() {
  680. let params = [
  681. {
  682. username: this.sMail,
  683. userpassword: 123456,
  684. alias: this.sName,
  685. oid: this.oid,
  686. ph: this.sPhone,
  687. sid: this.sId,
  688. cid: this.cid,
  689. },
  690. ];
  691. this.ajax
  692. .post(this.$store.state.api + "batchRegistration", params)
  693. .then((res) => {
  694. let params = [
  695. {
  696. userid: res.data.uid,
  697. username: this.sName,
  698. sid: this.sId,
  699. type: 2,
  700. oid: res.data.oid,
  701. phone: res.data.ph,
  702. cid: res.data.cid,
  703. intro: "",
  704. sex: "0",
  705. },
  706. ];
  707. this.ajax
  708. .post(this.$store.state.api + "updateUserByEdu", params)
  709. .then((res) => {
  710. console.log(res);
  711. })
  712. .catch((err) => {
  713. console.error(err);
  714. });
  715. this.$message({
  716. message: "新增成功",
  717. type: "success",
  718. });
  719. this.dialogVisibleAddStudent = false;
  720. this.sPhone = "";
  721. this.sName = "";
  722. this.sByClass = [];
  723. this.sMail = "";
  724. this.getStudent(this.cid);
  725. })
  726. .catch((err) => {
  727. this.isLoading = false;
  728. this.$message({
  729. message: "新增失败",
  730. type: "error",
  731. });
  732. console.error(err);
  733. });
  734. },
  735. updateStudentA(res) {
  736. this.userinfo = JSON.parse(JSON.stringify(res));
  737. this.userinfoA = JSON.parse(JSON.stringify(res));
  738. this.userinfo.classid = this.userinfo.classid.split(",")
  739. this.dialogVisibleUpdate = true;
  740. },
  741. updateStudent() {
  742. if (this.userinfo.name === "") {
  743. this.$message.error("学生姓名不能为空");
  744. return;
  745. } else if (!this.userinfo.classid) {
  746. this.$message.error("请为学生选择班级");
  747. return;
  748. } else if (
  749. this.userinfo.phonenumber &&
  750. !/^[1][3,4,5,7,8][0-9]{9}$/.test(this.userinfo.phonenumber)
  751. ) {
  752. this.$message.error("手机号格式不正确");
  753. return;
  754. } else if (
  755. !/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/.test(
  756. this.userinfo.un
  757. )
  758. ) {
  759. this.$message.error("邮箱格式不正确");
  760. return;
  761. }
  762. if (this.time()) {
  763. if (this.userinfoA.un != this.userinfo.un) {
  764. let params = { un: this.userinfo.un };
  765. this.ajax
  766. .get(this.$store.state.api + "findMail", params)
  767. .then((res) => {
  768. if (res.data[0].length > 0) {
  769. this.$message.error("此学生账号已被注册");
  770. } else {
  771. this.update_Student();
  772. }
  773. })
  774. .catch((err) => {
  775. console.error(err);
  776. });
  777. } else {
  778. this.update_Student();
  779. }
  780. }
  781. },
  782. update_Student() {
  783. let params = [
  784. {
  785. userid: this.userinfo.userid,
  786. username: this.userinfo.un,
  787. alias: this.userinfo.name,
  788. ph: this.userinfo.phonenumber,
  789. sid: this.userinfo.studentid,
  790. cid: this.userinfo.classid.join(","),
  791. },
  792. ];
  793. this.ajax
  794. .post(this.$store.state.api + "updateStudentInfo", params)
  795. .then((res) => {
  796. this.$message({
  797. message: "修改成功",
  798. type: "success",
  799. });
  800. this.dialogVisibleUpdate = false;
  801. this.getStudent(this.cid);
  802. })
  803. .catch((err) => {
  804. this.isLoading = false;
  805. this.$message({
  806. message: "修改失败",
  807. type: "error",
  808. });
  809. console.error(err);
  810. });
  811. },
  812. deleteClassStudent(id) {
  813. let params = [{ uid: id, cid: this.cid }];
  814. this.$confirm("确定移除此学生在本班级吗?", "提示", {
  815. confirmButtonText: "确定",
  816. cancelButtonText: "取消",
  817. type: "warning",
  818. })
  819. .then(() => {
  820. this.ajax
  821. .post(this.$store.state.api + "deleteClassStudent", params)
  822. .then((res) => {
  823. this.$message({
  824. message: "操作成功",
  825. type: "success",
  826. });
  827. this.getStudent(this.cid);
  828. })
  829. .catch((err) => {
  830. this.$message.error("操作失败");
  831. console.error(err);
  832. });
  833. })
  834. .catch(() => { });
  835. },
  836. //获取班级列表
  837. getClass2() {
  838. this.isLoading = true;
  839. let params = {
  840. oid: this.oid,
  841. };
  842. this.ajax
  843. .get(this.$store.state.api + "selectClassBySchool", params)
  844. .then((res) => {
  845. this.isLoading = false;
  846. this.classJuri = res.data[0];
  847. })
  848. .catch((err) => {
  849. this.isLoading = false;
  850. console.error(err);
  851. });
  852. },
  853. getSchoolName() {
  854. let params = {
  855. oid: this.oid,
  856. };
  857. this.ajax
  858. .get(this.$store.state.api + "selectSchoolName2", params)
  859. .then((res) => {
  860. this.schoolName = res.data[0][0].name;
  861. })
  862. .catch((err) => {
  863. console.error(err);
  864. });
  865. },
  866. searchStudent() {
  867. this.page2 = 1;
  868. this.getStudent(this.cid);
  869. },
  870. handleCurrentChange2(val) {
  871. this.page2 = val;
  872. this.getStudent(this.cid);
  873. },
  874. handleCurrentChange3(val) {
  875. this.page3 = val;
  876. this.getClassStudent();
  877. },
  878. getStudent(cid) {
  879. this.cid = cid
  880. this.ctype = 2
  881. this.isLoading = true;
  882. let params = {
  883. oid: this.oid,
  884. cid: this.cid,
  885. cu: "",
  886. cn: this.sPhoneUser,
  887. page: this.page2,
  888. };
  889. this.ajax
  890. .get(this.$store.state.api + "selectStudent2", params)
  891. .then((res) => {
  892. this.isLoading = false;
  893. this.total2 = res.data[0].length > 0 ? res.data[0][0].num : 0;
  894. this.tableData2 = res.data[0];
  895. this.getClass2();
  896. })
  897. .catch((err) => {
  898. this.isLoading = false;
  899. console.error(err);
  900. });
  901. },
  902. getClassStudent() {
  903. this.isLoading2 = true;
  904. let params = {
  905. oid: this.oid,
  906. cid: this.cid,
  907. cn: this.searchTN,
  908. page: this.page3,
  909. num: this.pageSize3,
  910. };
  911. this.ajax
  912. .get(this.$store.state.api + "getClassStudent", params)
  913. .then((res) => {
  914. this.isLoading2 = false;
  915. this.total3 = res.data[0].length > 0 ? res.data[0][0].num : 0;
  916. this.teacherJuri = res.data[0];
  917. })
  918. .catch((err) => {
  919. this.isLoading2 = false;
  920. console.error(err);
  921. });
  922. },
  923. addClassStudent() {
  924. if (!this.checkboxList3.length) {
  925. this.$message.error('请选择要添加班级的学生');
  926. return;
  927. }
  928. let params = [{
  929. cid: this.cid,
  930. student: JSON.stringify(this.checkboxList3)
  931. }];
  932. this.ajax
  933. .post(this.$store.state.api + "addClassStudent", params)
  934. .then((res) => {
  935. this.checkboxList3 = []
  936. this.dialogVisibleMember = false
  937. this.getStudent(this.cid)
  938. })
  939. .catch((err) => {
  940. console.error(err);
  941. });
  942. },
  943. iniPassword(id) {
  944. this.$confirm("确定" + "初始化" + "此学生的密码吗?", "提示", {
  945. confirmButtonText: "确定",
  946. cancelButtonText: "取消",
  947. type: "warning",
  948. })
  949. .then(() => {
  950. let params = [
  951. {
  952. uid: id,
  953. pa: 123456,
  954. },
  955. ];
  956. this.ajax
  957. .post(this.$store.state.api + "iniPassword", params)
  958. .then((res) => {
  959. this.$message({
  960. message: "初始化密码成功!",
  961. type: "success",
  962. });
  963. })
  964. .catch((err) => {
  965. console.error(err);
  966. });
  967. })
  968. .catch(() => { });
  969. },
  970. },
  971. };
  972. </script>
  973. <style scoped>
  974. .dialog_diy>>>.el-dialog__header {
  975. background: #3d67bc !important;
  976. padding: 15px 20px;
  977. }
  978. .dialog_diy>>>.el-dialog__title {
  979. color: #fff;
  980. }
  981. .student_table>>>.el-table--border td {
  982. border-right: 0px !important;
  983. }
  984. .dialog_diy>>>.el-dialog__headerbtn {
  985. top: 19px;
  986. }
  987. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
  988. color: #fff;
  989. }
  990. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
  991. color: #fff;
  992. }
  993. .student_head>>>.el-button--primary {
  994. background-color: #2268bc;
  995. }
  996. .xls_button {
  997. font-size: 14px;
  998. cursor: pointer;
  999. text-decoration: underline;
  1000. color: rgb(34, 104, 188);
  1001. }
  1002. .pb_head {
  1003. margin: 0 !important;
  1004. width: 100% !important;
  1005. }
  1006. .student_page {
  1007. margin-top: 10px;
  1008. }
  1009. .student_head {
  1010. margin-top: 10px;
  1011. padding-bottom: 15px;
  1012. display: flex;
  1013. justify-content: space-between;
  1014. }
  1015. .student_search {
  1016. display: flex;
  1017. width: 300px;
  1018. line-height: 40px;
  1019. align-items: center;
  1020. }
  1021. .student_search span {
  1022. /* margin: 0 10px 0 0; */
  1023. }
  1024. .student_button {
  1025. /* display: flex; */
  1026. /* height: 40px; */
  1027. }
  1028. .student_button .el-button--primary {
  1029. /* margin-right: 10px; */
  1030. }
  1031. .upload-demo {
  1032. display: flex;
  1033. flex-direction: column;
  1034. align-items: end;
  1035. /* position: relative; */
  1036. width: 100px;
  1037. overflow: hidden;
  1038. }
  1039. .student_table {
  1040. /* margin: 20px 0; */
  1041. }
  1042. .el-table>>>.even_row {
  1043. background-color: #f1f1f1;
  1044. }
  1045. .top {
  1046. display: flex;
  1047. justify-content: space-between;
  1048. }
  1049. .bgColor {
  1050. background: #2167bc;
  1051. }
  1052. .student_table>>>.el-table,
  1053. .student_table>>>.el-table__body-wrapper {
  1054. height: auto !important;
  1055. }
  1056. .student_head {
  1057. margin-top: 10px;
  1058. padding-bottom: 10px;
  1059. display: flex;
  1060. justify-content: space-between;
  1061. }
  1062. .head_left {
  1063. display: flex;
  1064. align-items: center;
  1065. line-height: 40px;
  1066. }
  1067. .head_right {
  1068. display: flex;
  1069. flex-direction: row;
  1070. flex-wrap: nowrap;
  1071. align-items: center;
  1072. line-height: 40px;
  1073. }
  1074. /* .student_input>>>.el-input__inner {
  1075. width: 190px;
  1076. font-size: 13px;
  1077. padding: 0 10px;
  1078. }
  1079. */
  1080. .student_button {
  1081. color: #fff;
  1082. background: #2268bc;
  1083. }
  1084. .head_right>button:nth-child(1) {
  1085. color: #fff;
  1086. background: #2268bc;
  1087. }
  1088. .head_right>div {
  1089. line-height: 40px;
  1090. margin-left: 10px;
  1091. color: #2a6dbe;
  1092. text-decoration: underline;
  1093. cursor: pointer;
  1094. }
  1095. .userImg {
  1096. display: flex;
  1097. flex-direction: row;
  1098. justify-content: center;
  1099. align-items: center;
  1100. }
  1101. .tx {
  1102. width: 40px;
  1103. margin-right: 10px;
  1104. }
  1105. .delete {
  1106. width: 25px;
  1107. height: 25px;
  1108. cursor: pointer;
  1109. margin-left: 10px;
  1110. }
  1111. .tx>img,
  1112. .delete>img {
  1113. width: 100%;
  1114. height: 100%;
  1115. }
  1116. .btnBox {
  1117. display: flex;
  1118. align-items: center;
  1119. }
  1120. .add_student>>>.el-dialog__header {
  1121. padding: 20px 20px 10px;
  1122. text-align: center;
  1123. background: #32455b;
  1124. }
  1125. .add_student>>>.el-dialog__title {
  1126. font-size: 14px !important;
  1127. color: #fff !important;
  1128. }
  1129. .add_student>>>.el-dialog__headerbtn {
  1130. font-size: 20px !important;
  1131. }
  1132. .add_student>>>.el-form-item__label {
  1133. margin-left: 65px;
  1134. }
  1135. .add_student>>>.el-form-item {
  1136. display: flex;
  1137. }
  1138. .add_student>>>.el-form-item__content {
  1139. margin: 0 !important;
  1140. }
  1141. .add_input {
  1142. width: 365px;
  1143. }
  1144. .add_student>>>.el-dialog__footer {
  1145. text-align: center !important;
  1146. }
  1147. .right {
  1148. width: 250px;
  1149. color: #fff;
  1150. background: #0e72e6;
  1151. margin-bottom: 20px;
  1152. }
  1153. .header-title {
  1154. display: flex;
  1155. }
  1156. .logoImg {
  1157. width: 30px;
  1158. }
  1159. .logoImg>img {
  1160. width: 100%;
  1161. height: 100%;
  1162. }
  1163. .title_add_student {
  1164. margin: 0 auto;
  1165. color: #fff;
  1166. }
  1167. .upload-demo {
  1168. line-height: 0px !important;
  1169. }
  1170. .upload-demo>>>.el-button {
  1171. color: #fff;
  1172. background: #2268bc;
  1173. width: 70px;
  1174. height: 30px;
  1175. padding: 0 !important;
  1176. font-size: 12px;
  1177. line-height: 0 !important;
  1178. }
  1179. .people {
  1180. border: 1px solid rgb(229 229 229);
  1181. height: 495px;
  1182. border-radius: 5px;
  1183. width: 100%;
  1184. overflow: auto;
  1185. }
  1186. .people_top {
  1187. display: flex;
  1188. width: 100%;
  1189. /* justify-content: space-between; */
  1190. /* align-items: center; */
  1191. flex-direction: column;
  1192. padding: 10px 25px 0;
  1193. box-sizing: border-box;
  1194. }
  1195. .people_nav,
  1196. .people_top_right {
  1197. /* padding: 20px 0 0 20px; */
  1198. }
  1199. .people_top_right {
  1200. height: 40px;
  1201. margin-bottom: 10px;
  1202. }
  1203. .people_search {
  1204. display: flex;
  1205. position: relative;
  1206. }
  1207. .people_search>>>.el-input__inner {
  1208. /* height: 25px; */
  1209. width: 95%;
  1210. }
  1211. .search_img {
  1212. width: 20px;
  1213. height: 20px;
  1214. position: absolute;
  1215. right: 30px;
  1216. top: 50%;
  1217. transform: translateY(-50%);
  1218. }
  1219. .search_img>img {
  1220. width: 100%;
  1221. height: 100%;
  1222. }
  1223. .people_name {
  1224. display: flex;
  1225. justify-content: flex-start;
  1226. padding: 10px 0 0 25px;
  1227. flex-direction: column;
  1228. flex-wrap: nowrap;
  1229. height: calc(100% - 140px);
  1230. overflow-y: auto;
  1231. overflow-x: hidden;
  1232. flex-direction: column;
  1233. }
  1234. .people_name>>>.el-checkbox {
  1235. width: 100%;
  1236. display: flex;
  1237. align-items: center;
  1238. margin-bottom: 10px;
  1239. }
  1240. .people_name>>>.el-checkbox__label {
  1241. text-overflow: ellipsis;
  1242. overflow: hidden;
  1243. width: 100%;
  1244. }
  1245. .addNewPP>>>.el-dialog__body {
  1246. padding: 5px 20px;
  1247. }
  1248. .t_j_box {
  1249. display: flex;
  1250. }
  1251. .t_j_box span:nth-child(1) {
  1252. width: 50%;
  1253. overflow: hidden;
  1254. margin-right: 10px;
  1255. text-overflow: ellipsis;
  1256. white-space: nowrap;
  1257. }
  1258. .t_j_box span:nth-child(2) {
  1259. width: 50%;
  1260. overflow: hidden;
  1261. margin-right: 10px;
  1262. text-overflow: ellipsis;
  1263. white-space: nowrap;
  1264. }
  1265. .student_input>>>.el-input__inner {
  1266. height: 30px;
  1267. width: 190px;
  1268. font-size: 13px;
  1269. padding: 0 10px;
  1270. }
  1271. .student_input.el-input {
  1272. width: auto;
  1273. }
  1274. .student_input {
  1275. margin-right: 10px;
  1276. }
  1277. .student_input>>>.el-input__icon {
  1278. line-height: unset;
  1279. }
  1280. .student_button {
  1281. color: #fff;
  1282. background: #2268bc;
  1283. width: 60px;
  1284. height: 30px;
  1285. padding: 0 !important;
  1286. font-size: 12px;
  1287. line-height: 30px;
  1288. }
  1289. .sub_head {
  1290. position: relative;
  1291. }
  1292. .sub_head::after {
  1293. content: "";
  1294. width: 100%;
  1295. background: #5a9cea;
  1296. height: 2px;
  1297. position: absolute;
  1298. left: 0;
  1299. bottom: -10px;
  1300. }
  1301. .subClick {
  1302. /* font-size: 16px; */
  1303. font-size: 26px;
  1304. cursor: pointer;
  1305. /* margin-left: 17.5px; */
  1306. /* color: #ab582f; */
  1307. /* color: #409eff; */
  1308. color: #999;
  1309. }
  1310. .subClick:hover {
  1311. color: #000;
  1312. }
  1313. .sub_head + .subClick,
  1314. .subClick + .subClick,
  1315. .subClick + .sub_head{
  1316. margin-left: 17.5px;
  1317. }
  1318. </style>