student.vue 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256
  1. <template>
  2. <div class="pb_content" style="background: unset">
  3. <div 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">
  10. <span>我的学生列表</span>
  11. </div>
  12. <div class="student_head">
  13. <div class="head_left">
  14. <el-input v-model="sPhoneUser" class="student_input" placeholder="请输入用户名"></el-input>
  15. <el-select v-model="cid" placeholder="请选择班级" class="student_input" @change="searchStudent">
  16. <el-option label="所有人" value=""></el-option>
  17. <el-option v-for="(item, index) in classJuri" :key="index" :label="item.name" :value="item.id"></el-option>
  18. </el-select>
  19. <el-button class="student_button" @click="searchStudent">查询</el-button>
  20. </div>
  21. <div class="head_right">
  22. <el-button @click="addStudent">添加学生</el-button>
  23. <el-upload class="upload-demo newCss" :http-request="handleChange" :on-remove="handleRemove" action="#"
  24. :file-list="fileListUpload" accept=".xlsx">
  25. <el-button size="primary" type="primary">批量添加</el-button>
  26. <div slot="tip" class="el-upload__tip" style="margin-left:10px;">只能上传xlsx文件,且不超过500kb</div>
  27. </el-upload>
  28. <!-- <el-button @click="exportExcel">导出学生</el-button> -->
  29. <div @click="getExcel">xls 上传样例</div>
  30. </div>
  31. </div>
  32. </div>
  33. <div class="pb_content_body">
  34. <div class="student_table">
  35. <el-table ref="table" :data="tableData" border :height="tableHeight" :fit="true" v-loading="isLoading"
  36. style="width: 100%" :header-cell-style="{ background: '#f1f1f1', fontSize: '17px' }"
  37. :row-class-name="tableRowClassName">
  38. <el-table-column label="姓名" min-width="10" align="center">
  39. <template slot-scope="scope">
  40. <div class="userImg">
  41. <div class="tx">
  42. <img :src="
  43. scope.row.headportrait != null
  44. ? scope.row.headportrait
  45. : tx
  46. " alt />
  47. </div>
  48. <div style="
  49. width: 150px;
  50. text-align: left;
  51. white-space: nowrap;
  52. overflow: hidden;
  53. text-overflow: ellipsis;
  54. ">{{ scope.row.name }}</div>
  55. </div>
  56. </template>
  57. </el-table-column>
  58. <el-table-column label="学生账号" min-width="15" align="center">
  59. <template slot-scope="scope">
  60. <div>{{ scope.row.un ? scope.row.un : "" }}</div>
  61. </template>
  62. </el-table-column>
  63. <!-- <el-table-column label="电话" min-width="15" align="center">
  64. <template slot-scope="scope">
  65. <div>{{scope.row.phonenumber ? scope.row.phonenumber : "" }}</div>
  66. </template>
  67. </el-table-column> -->
  68. <!-- <el-table-column prop="studentid" label="学号" min-width="10" align="center"></el-table-column> -->
  69. <!-- <el-table-column
  70. prop="school"
  71. label="学校"
  72. min-width="30"
  73. align="center"
  74. >
  75. </el-table-column>-->
  76. <el-table-column prop="classname2" label="班级" min-width="15" align="center">
  77. </el-table-column>
  78. <el-table-column label="操作" width="250px">
  79. <template slot-scope="scope">
  80. <div class="btnBox">
  81. <el-button class="de_button" type="primary" size="small"
  82. @click="updateStudentA(scope.row)">修改</el-button>
  83. <div class="delete">
  84. <img src="../../assets/remove.png" alt @click="deleteStudent(scope.row.userid, scope.row.state)" />
  85. </div>
  86. </div>
  87. </template>
  88. </el-table-column>
  89. </el-table>
  90. </div>
  91. <div class="student_page">
  92. <el-pagination background layout="prev, pager, next" :page-size="10" :total="total" v-if="page"
  93. @current-change="handleCurrentChange"></el-pagination>
  94. </div>
  95. </div>
  96. <el-dialog :visible.sync="dialogVisible" :append-to-body="true" width="700px" :before-close="handleClose"
  97. class="add_student">
  98. <div slot="title" class="header-title">
  99. <div class="logoImg">
  100. <img src="../../assets/logo.png" alt />
  101. </div>
  102. <div class="title_add_student">添加学生</div>
  103. </div>
  104. <el-form>
  105. <el-form-item label="学生姓名" :label-width="formLabelWidth">
  106. <span>
  107. <el-input placeholder="请输入学生姓名" clearable v-model="sName" class="add_input"></el-input>
  108. </span>
  109. </el-form-item>
  110. <el-form-item label="学生学号" :label-width="formLabelWidth">
  111. <span>
  112. <el-input placeholder="请输入学生学号" clearable v-model="sId" class="add_input"></el-input>
  113. </span>
  114. </el-form-item>
  115. <el-form-item label="学生手机号" :label-width="formLabelWidth">
  116. <span>
  117. <el-input placeholder="请输入学生手机号" clearable v-model="sPhone" class="add_input"></el-input>
  118. </span>
  119. </el-form-item>
  120. <el-form-item label="学生账号" :label-width="formLabelWidth">
  121. <span>
  122. <el-input placeholder="请输入学生账号" clearable v-model="sMail" class="add_input"></el-input>
  123. </span>
  124. </el-form-item>
  125. <el-form-item label="所属学校" :label-width="formLabelWidth">
  126. <el-input disabled style="width: 300px" v-model="schoolName"></el-input>
  127. </el-form-item>
  128. <el-form-item label="班级" :label-width="formLabelWidth">
  129. <el-select v-model="sByClass" placeholder="请选择班级">
  130. <el-option v-for="(item, index) in classJuri" :key="index" :label="item.name" :value="item.id"></el-option>
  131. </el-select>
  132. </el-form-item>
  133. <div style="text-align: center; color: #adb3b7">注:添加学生的账号密码为123456</div>
  134. </el-form>
  135. <span slot="footer" class="dialog-footer flex">
  136. <el-button class="right" @click="insertStudent">确认</el-button>
  137. </span>
  138. </el-dialog>
  139. <el-dialog :visible.sync="dialogVisibleUpdate" :append-to-body="true" width="700px" :before-close="handleClose"
  140. class="add_student">
  141. <div slot="title" class="header-title">
  142. <div class="logoImg">
  143. <img src="../../assets/logo.png" alt />
  144. </div>
  145. <div class="title_add_student">修改学生</div>
  146. </div>
  147. <el-form>
  148. <el-form-item label="学生名称" :label-width="formLabelWidth">
  149. <span>
  150. <el-input placeholder="请输入学生姓名" clearable v-model="userinfo.name" class="add_input"></el-input>
  151. </span>
  152. </el-form-item>
  153. <el-form-item label="学生学号" :label-width="formLabelWidth">
  154. <span>
  155. <el-input placeholder="请输入学生学号" clearable v-model="userinfo.studentid" class="add_input"></el-input>
  156. </span>
  157. </el-form-item>
  158. <el-form-item label="学生手机号" :label-width="formLabelWidth">
  159. <span>
  160. <el-input placeholder="请输入学生手机号" clearable v-model="userinfo.phonenumber" class="add_input"></el-input>
  161. </span>
  162. </el-form-item>
  163. <el-form-item label="学生账号" :label-width="formLabelWidth">
  164. <span>
  165. <el-input placeholder="请输入学生账号" clearable v-model="userinfo.un" class="add_input"></el-input>
  166. </span>
  167. </el-form-item>
  168. <el-form-item label="所属学校" :label-width="formLabelWidth">
  169. <el-input disabled style="width: 300px" v-model="schoolName"></el-input>
  170. </el-form-item>
  171. <el-form-item label="班级" :label-width="formLabelWidth">
  172. <el-select v-model="userinfo.classid" placeholder="请选择班级">
  173. <el-option v-for="(item, index) in classJuri" :key="index" :label="item.name" :value="item.id"></el-option>
  174. </el-select>
  175. </el-form-item>
  176. <div style="text-align: center; color: #adb3b7">注:添加学生的账号密码为123456</div>
  177. </el-form>
  178. <span slot="footer" class="dialog-footer flex">
  179. <el-button class="right" @click="updateStudent">修改</el-button>
  180. </span>
  181. </el-dialog>
  182. </div>
  183. </template>
  184. <script>
  185. import $ from "jquery";
  186. import pinyin from "../../../node_modules/js-pinyin/index";
  187. export default {
  188. data() {
  189. return {
  190. tableHeight: "500px",
  191. isLoading: false,
  192. formLabelWidth: "100px",
  193. tableData: [],
  194. dialogVisible: false,
  195. dialogVisibleUpdate: false,
  196. userinfo: {},
  197. userinfoA: {},
  198. sName: "",
  199. sPhone: "",
  200. sId: "",
  201. schoolName: "",
  202. // sBySchool: [],
  203. // sBySchoolName:"",
  204. sByClass: "",
  205. sMail: "",
  206. schoolJuri: [],
  207. classJuri: [],
  208. fileListUpload: [],
  209. page: 1,
  210. total: 0,
  211. sPhoneUser: "",
  212. userid: this.$route.query.userid,
  213. oid: this.$route.query.oid,
  214. cid: '',
  215. tx: require("../../assets/avatar.png"),
  216. };
  217. },
  218. mounted() {
  219. this.$nextTick(function () {
  220. this.tableHeight =
  221. window.innerHeight - this.$refs.table.$el.offsetTop - 200;
  222. if (this.tableHeight <= 530) {
  223. this.tableHeight = 530;
  224. }
  225. // 监听窗口大小变化
  226. let self = this;
  227. window.onresize = function () {
  228. self.tableHeight =
  229. window.innerHeight - self.$refs.table.$el.offsetTop - 200;
  230. if (self.tableHeight <= 530) {
  231. self.tableHeight = 530;
  232. }
  233. };
  234. });
  235. },
  236. methods: {
  237. tableRowClassName({ row, rowIndex }) {
  238. if ((rowIndex + 1) % 2 === 0) {
  239. return "even_row";
  240. } else {
  241. return "";
  242. }
  243. },
  244. searchStudent() {
  245. this.page = 1;
  246. this.getStudent();
  247. },
  248. addStudent() {
  249. this.dialogVisible = true;
  250. (this.sName = ""), (this.sPhone = ""), (this.sByClass = ""),(this.sMail);
  251. this.getClass();
  252. // this.getSchool();
  253. },
  254. handleClose(done) {
  255. done();
  256. },
  257. getExcel(res) {
  258. require.ensure([], () => {
  259. const { export_json_to_excel } = require("../../common/Export2Excel");
  260. const tHeader = ["学号", "学生姓名", "学生账号", "学生手机号", "班级"];
  261. const data = [];
  262. export_json_to_excel(tHeader, data, "上传学生样例");
  263. });
  264. },
  265. handleCurrentChange(val) {
  266. this.page = val;
  267. this.getStudent();
  268. },
  269. time() {
  270. if (!this.now) {
  271. this.now = new Date().getTime();
  272. return true;
  273. } else {
  274. let time = new Date().getTime();
  275. if (time - this.now > 3000) {
  276. this.now = time;
  277. return true;
  278. } else {
  279. return false;
  280. }
  281. }
  282. },
  283. //新增学生
  284. insertStudent() {
  285. this.dialogVisible = true;
  286. if (this.sName === "") {
  287. this.$message.error("学生姓名不能为空");
  288. return;
  289. } else if (this.sByClass === "") {
  290. this.$message.error("请为学生选择班级");
  291. return;
  292. } else if (this.sPhone != "" && !/^[1][3,4,5,7,8][0-9]{9}$/.test(this.sPhone)) {
  293. this.$message.error("手机号格式不正确");
  294. return;
  295. } else if (
  296. !/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/.test(this.sMail)
  297. ) {
  298. this.$message.error("邮箱格式不正确");
  299. return;
  300. }
  301. // else if (this.sId === "") {
  302. // this.$message.error("学生学号不能为空");
  303. // return;
  304. // } else if (this.sPhone === "") {
  305. // this.$message.error("学生手机号不能为空");
  306. // return;
  307. // }
  308. if (this.time()) {
  309. // let params = { un: this.sPhone };
  310. // this.ajax
  311. // .get(this.$store.state.api + "findPhone", params)
  312. // .then((res) => {
  313. // if (res.data[0].length > 0) {
  314. // this.$message.error("此学生手机号码已被注册");
  315. // } else {
  316. let params = { un: this.sMail };
  317. this.ajax
  318. .get(this.$store.state.api + "findMail", params)
  319. .then((res) => {
  320. if (res.data[0].length > 0) {
  321. this.$message.error("此学生账号已被注册");
  322. } else {
  323. // let params = { un: this.sId };
  324. // this.ajax
  325. // .get(this.$store.state.api + "findSid", params)
  326. // .then((res) => {
  327. // if (res.data[0].length > 0) {
  328. // this.$message.error("此学生学号已被注册");
  329. // } else {
  330. this.add_Student();
  331. // }
  332. // })
  333. // .catch((err) => {
  334. // console.error(err);
  335. // });
  336. }
  337. })
  338. .catch((err) => {
  339. console.error(err);
  340. });
  341. // }
  342. // })
  343. // .catch((err) => {
  344. // console.error(err);
  345. // });
  346. }
  347. },
  348. add_Student() {
  349. let params = [
  350. {
  351. username: this.sMail,
  352. userpassword: 123456,
  353. alias: this.sName,
  354. oid: this.oid,
  355. ph: this.sPhone,
  356. sid: this.sId,
  357. cid: this.sByClass,
  358. },
  359. ];
  360. this.ajax
  361. .post(this.$store.state.api + "batchRegistration", params)
  362. .then((res) => {
  363. // console.log(res.data.uid, res.data.ph, res.data.oid, res.data.cid);
  364. // this.isLoading = false;
  365. let params = [
  366. {
  367. userid: res.data.uid,
  368. username: this.sName,
  369. sid: this.sId,
  370. type: 2,
  371. oid: res.data.oid,
  372. phone: res.data.ph,
  373. cid: res.data.cid,
  374. intro: "",
  375. sex: "0",
  376. },
  377. ];
  378. this.ajax
  379. // .post(this.$store.state.api + "updateUser", params)
  380. .post(this.$store.state.api + "updateUserByEdu", params)
  381. .then((res) => {
  382. console.log(res);
  383. })
  384. .catch((err) => {
  385. console.error(err);
  386. });
  387. this.$message({
  388. message: "新增成功",
  389. type: "success",
  390. });
  391. this.dialogVisible = false;
  392. this.sPhone = "";
  393. this.sName = "";
  394. // this.sBySchool = [];
  395. this.sByClass = [];
  396. this.sMail = "";
  397. this.getStudent();
  398. })
  399. .catch((err) => {
  400. this.isLoading = false;
  401. this.$message({
  402. message: "新增失败",
  403. type: "error",
  404. });
  405. console.error(err);
  406. });
  407. },
  408. //获取班级列表
  409. getClass() {
  410. this.isLoading = true;
  411. let params = {
  412. oid: this.oid,
  413. };
  414. this.ajax
  415. .get(this.$store.state.api + "selectClassBySchool", params)
  416. .then((res) => {
  417. this.isLoading = false;
  418. this.classJuri = res.data[0];
  419. })
  420. .catch((err) => {
  421. this.isLoading = false;
  422. console.error(err);
  423. });
  424. },
  425. // getSchool() {
  426. // this.isLoading = true;
  427. // let params = {
  428. // page: this.page,
  429. // };
  430. // this.ajax
  431. // .get(this.$store.state.api + "selectOrg", params)
  432. // .then((res) => {
  433. // this.isLoading = false;
  434. // this.schoolJuri = res.data[0];
  435. // })
  436. // .catch((err) => {
  437. // this.isLoading = false;
  438. // console.error(err);
  439. // });
  440. // },
  441. getStudent() {
  442. this.isLoading = true;
  443. let params = {
  444. oid: this.oid,
  445. cid: this.cid,
  446. cu: "",
  447. cn: this.sPhoneUser,
  448. page: this.page,
  449. };
  450. this.ajax
  451. .get(this.$store.state.api + "selectStudent2", params)
  452. .then((res) => {
  453. this.isLoading = false;
  454. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  455. this.tableData = res.data[0];
  456. })
  457. .catch((err) => {
  458. this.isLoading = false;
  459. console.error(err);
  460. });
  461. },
  462. handleChange(file) {
  463. this.fileTemp = file.file;
  464. if (this.fileTemp) {
  465. if (
  466. this.fileTemp.type ==
  467. "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" ||
  468. this.fileTemp.type == "application/vnd.ms-excel"
  469. ) {
  470. this.importCount = 1;
  471. this.importfxx(this.fileTemp);
  472. } else {
  473. this.$message({
  474. type: "warning",
  475. message: "附件格式错误,请删除后重新上传!",
  476. });
  477. }
  478. } else {
  479. this.$message({
  480. type: "warning",
  481. message: "请上传附件!",
  482. });
  483. }
  484. },
  485. handleRemove(file, fileList) {
  486. this.fileTemp = null;
  487. },
  488. exportExcel() {
  489. try {
  490. let params = {
  491. oid: this.oid,
  492. };
  493. this.ajax
  494. .get(this.$store.state.api + "selectUserBySchool", params)
  495. .then((res) => {
  496. var res = res.data[0];
  497. //如果value的json字段的key值和想要的headers值不一致时,可做如下更改
  498. //将和下面的Object.fromEntries结合,将json字段的key值改变为要求的excel的header值
  499. var array = [];
  500. for (var i = 0; i < res.length; i++) {
  501. var _json = {};
  502. _json["用户名"] = res[i].username;
  503. _json["姓名"] = res[i].alias ? res[i].alias : "";
  504. _json["班级"] = res[i].classid ? res[i].classid : "";
  505. array.push(_json);
  506. }
  507. var XLSX = require("xlsx");
  508. const workbook = XLSX.utils.book_new(); //创建一个新的工作簿对象
  509. let ws = XLSX.utils.json_to_sheet(array); //将json对象数组转化成工作表
  510. ws["!cols"] = [
  511. //设置每一列的宽度
  512. { wch: 50 },
  513. { wch: 50 },
  514. { wch: 50 },
  515. ];
  516. XLSX.utils.book_append_sheet(workbook, ws, "sheet1"); //把sheet添加到workbook里,第三个参数是sheet名
  517. XLSX.writeFile(workbook, "学生信息.xlsx");
  518. // const wopts = { bookType: "xlsx", bookSST: false, type: "array" };//写入的样式bookType:输出的文件类型,type:输出的数据类型,bookSST: 是否生成Shared String Table,官方解释是,如果开启生成速度会下降,但在低版本IOS设备上有更好的兼容性
  519. // const wbout = XLSX.write(workbook, wopts);// 浏览器端和node共有的API,实际上node可以直接使用xlsx.writeFile来写入文件,但是浏览器没有该API
  520. // FileSaver.saveAs(new Blob([wbout], { type: "application/octet-stream" }), `${title} demo.xlsx`);//保存文件
  521. this.$message({
  522. message: "导出成功",
  523. type: "success",
  524. });
  525. })
  526. .catch((err) => {
  527. console.error(err);
  528. });
  529. } catch (e) {
  530. console.log(e, e.stack);
  531. }
  532. },
  533. importfxx(obj) {
  534. const loading = this.$loading.service({
  535. background: "rgba(255, 255, 255, 0.7)",
  536. target: document.body,
  537. });
  538. var _$ = $;
  539. this.importCount++;
  540. let _this = this;
  541. // 通过DOM取文件数据
  542. this.file = obj;
  543. var rABS = false; //是否将文件读取为二进制字符串
  544. var f = this.file;
  545. var reader = new FileReader();
  546. //if (!FileReader.prototype.readAsBinaryString) {
  547. FileReader.prototype.readAsBinaryString = function (f) {
  548. var binary = "";
  549. var rABS = false; //是否将文件读取为二进制字符串
  550. var pt = this;
  551. var wb; //读取完成的数据
  552. var outdata;
  553. var reader = new FileReader();
  554. reader.onload = function (e) {
  555. var bytes = new Uint8Array(reader.result);
  556. var length = bytes.byteLength;
  557. for (var i = 0; i < length; i++) {
  558. binary += String.fromCharCode(bytes[i]);
  559. }
  560. var XLSX = require("xlsx");
  561. if (rABS) {
  562. wb = XLSX.read(btoa(fixdata(binary)), {
  563. //手动转化
  564. type: "base64",
  565. });
  566. } else {
  567. wb = XLSX.read(binary, {
  568. type: "binary",
  569. });
  570. }
  571. outdata = XLSX.utils.sheet_to_json(wb.Sheets[wb.SheetNames[0]]); //outdata就是你想要的东西
  572. this.da = [...outdata];
  573. let arr = [];
  574. this.da.map((v) => {
  575. let obj = {};
  576. let a = "";
  577. var num = "";
  578. for (var cj = 0; cj < 3; cj++) {
  579. num += Math.floor(Math.random() * 10);
  580. }
  581. a =
  582. pinyin.getFullChars(v["学生姓名"]).toLowerCase() +
  583. num +
  584. "@cocorobo.cc";
  585. obj.sId = v["学号"];
  586. obj.name = v["学生姓名"];
  587. obj.mail = v["学生账号"] ? v["学生账号"] : a;
  588. obj.phone = v["学生手机号"];
  589. obj.class = v["班级"];
  590. arr.push(obj);
  591. });
  592. console.log(arr);
  593. let _b = 1;
  594. for (var i = 0; i < arr.length; i++) {
  595. let item = arr[i];
  596. if (item.class === "") {
  597. _b = 1;
  598. _this.$message.error("学生班级不能为空,请重新上传");
  599. break;
  600. } else if (item.name === "") {
  601. _b = 1;
  602. _this.$message.error("学生姓名不能为空,请重新上传");
  603. break;
  604. } else if (item.sId === "") {
  605. _b = 1;
  606. _this.$message.error("学生学号不能为空,请重新上传");
  607. }
  608. // else if (item.phone === "") {
  609. // _b = 1;
  610. // _this.$message.error("学生手机号不能为空,请重新上传");
  611. // break;
  612. // } else if (!/^[1][3,4,5,7,8][0-9]{9}$/.test(item.phone)) {
  613. // _b = 1;
  614. // _this.$message.error("有学生手机号格式不正确,请重新上传");
  615. // break;
  616. // }
  617. else if (item.mail === "") {
  618. _b = 1;
  619. _this.$message.error("学生账号不能为空,请重新上传");
  620. break;
  621. } else if (
  622. !/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/.test(
  623. item.mail
  624. )
  625. ) {
  626. _b = 1;
  627. _this.$message.error("有学生账号格式不正确,请重新上传");
  628. break;
  629. }
  630. // else if (item.school === "") {
  631. // _b = 1;
  632. // _this.$message.error("学生学校不能为空,请重新上传");
  633. // break;
  634. // }
  635. // else if (item.sex === "") {
  636. // _b = 1;
  637. // _this.$message.error("学生性别不能为空,请重新上传");
  638. // break;
  639. // }
  640. // if (item.class != "") {
  641. // let _a;
  642. // let params = {
  643. // className: item.class,
  644. // };
  645. // _$.ajax({
  646. // url: _this.$store.state.api + "selectC", //url路径
  647. // type: "GET", //GET
  648. // async: false, //或false,是否异步
  649. // data: params,
  650. // timeout: 5000, //超时时间
  651. // dataType: "json", //返回的数据格式:
  652. // beforeSend: function (xhr) {},
  653. // success: function (res, textStatus, jqXHR) {
  654. // if (res[0].length == 0) {
  655. // _a = 1;
  656. // _this.$message.error(
  657. // "有学生班级不存在,请去添加后并重新上传"
  658. // );
  659. // } else {
  660. // item.classid = res[0][0].id;
  661. // }
  662. // },
  663. // error: function (xhr, textStatus) {
  664. // console.log(textStatus);
  665. // },
  666. // complete: function () {},
  667. // });
  668. // if (_a == 1) {
  669. // _b = 1;
  670. // break;
  671. // }
  672. // }
  673. // if (item.school != "") {
  674. // let _a;
  675. // let params = {
  676. // schoolName: item.school,
  677. // };
  678. // _$.ajax({
  679. // url: _this.$store.state.api + "selectS", //url路径
  680. // type: "GET", //GET
  681. // async: false, //或false,是否异步
  682. // data: params,
  683. // timeout: 5000, //超时时间
  684. // dataType: "json", //返回的数据格式:
  685. // beforeSend: function (xhr) {},
  686. // success: function (res, textStatus, jqXHR) {
  687. // if (res[0].length == 0) {
  688. // _a = 1;
  689. // _this.$message.error(
  690. // "有学生学校不存在,请去添加后并重新上传"
  691. // );
  692. // } else {
  693. // item.schoolid = res[0][0].id;
  694. // }
  695. // },
  696. // error: function (xhr, textStatus) {
  697. // console.log(textStatus);
  698. // },
  699. // complete: function () {},
  700. // });
  701. // if (_a == 1) {
  702. // _b = 1;
  703. // break;
  704. // }
  705. // }
  706. // for (var k = 0; k < arr.length; k++) {
  707. // if (item.phone != "") {
  708. // let params = { un: item.phone };
  709. // let _a;
  710. // _$.ajax({
  711. // url: _this.$store.state.api + "findPhone", //url路径
  712. // type: "GET", //GET
  713. // async: false, //或false,是否异步
  714. // data: params,
  715. // timeout: 5000, //超时时间
  716. // dataType: "json", //返回的数据格式:
  717. // beforeSend: function (xhr) {},
  718. // success: function (res, textStatus, jqXHR) {
  719. // if (res[0].length > 0) {
  720. // _this.$message.error("有学生手机号码已被注册");
  721. // _a = 1;
  722. // }
  723. // },
  724. // error: function (xhr, textStatus) {
  725. // console.log(textStatus);
  726. // },
  727. // complete: function () {},
  728. // });
  729. // if (_a == 1) {
  730. // _b = 1;
  731. // break;
  732. // }
  733. // }
  734. // if (item.mail != "") {
  735. // let params = { un: item.mail };
  736. // let _a;
  737. // _$.ajax({
  738. // url: _this.$store.state.api + "findMail", //url路径
  739. // type: "GET", //GET
  740. // async: false, //或false,是否异步
  741. // data: params,
  742. // timeout: 5000, //超时时间
  743. // dataType: "json", //返回的数据格式:
  744. // beforeSend: function (xhr) {},
  745. // success: function (res, textStatus, jqXHR) {
  746. // if (res[0].length > 0) {
  747. // _this.$message.error("有学生账号已被注册");
  748. // _a = 1;
  749. // }
  750. // },
  751. // error: function (xhr, textStatus) {
  752. // console.log(textStatus);
  753. // },
  754. // complete: function () {},
  755. // });
  756. // if (_a == 1) {
  757. // _b = 1;
  758. // break;
  759. // }
  760. // }
  761. // if (item.sId != "") {
  762. // let params = { un: item.sId };
  763. // let _a;
  764. // _$.ajax({
  765. // url: _this.$store.state.api + "findSid", //url路径
  766. // type: "GET", //GET
  767. // async: false, //或false,是否异步
  768. // data: params,
  769. // timeout: 5000, //超时时间
  770. // dataType: "json", //返回的数据格式:
  771. // beforeSend: function (xhr) {},
  772. // success: function (res, textStatus, jqXHR) {
  773. // if (res[0].length > 0) {
  774. // _this.$message.error("有学生学号重复");
  775. // _a = 1;
  776. // }
  777. // },
  778. // error: function (xhr, textStatus) {
  779. // console.log(textStatus);
  780. // },
  781. // complete: function () {},
  782. // });
  783. // if (_a == 1) {
  784. // _b = 1;
  785. // break;
  786. // }
  787. // }
  788. // _b = 2;
  789. // }
  790. // }
  791. // if (_b == 2) {
  792. // for (var i = 0; i < arr.length; i++) {
  793. // let _i = i;
  794. // let item = arr[i];
  795. // let params = [
  796. // {
  797. // alias: item.name,
  798. // username: item.mail,
  799. // userpassword: 123456,
  800. // oid: _this.oid,
  801. // ph: item.phone,
  802. // cid: item.class,
  803. // },
  804. // ];
  805. // _this.ajax
  806. // .post(_this.$store.state.api + "batchRegistration", params)
  807. // .then((res) => {
  808. // let params = [
  809. // {
  810. // userid: res.data.uid,
  811. // username: item.name,
  812. // sId: item.sId,
  813. // type: 2,
  814. // oid: res.data.oid,
  815. // phone: res.data.ph ? res.data.ph : "",
  816. // cid: res.data.cid ? res.data.cid : "",
  817. // intro: "",
  818. // sex: "0",
  819. // },
  820. // ];
  821. // _this.ajax
  822. // .post(_this.$store.state.api + "updateUserByEdu", params)
  823. // .then((res) => {
  824. // console.log(res);
  825. // })
  826. // .catch((err) => {
  827. // console.error(err);
  828. // });
  829. // loading.close();
  830. // // _this.$message({
  831. // // message: "新增成功",
  832. // // type: "success",
  833. // // });
  834. // _this.getStudent();
  835. // // if (_i == arr.length - 1) {
  836. // // loading.close();
  837. // // _this.$message({
  838. // // message: "上传成功",
  839. // // type: "success",
  840. // // });
  841. // // _this.getStudent();
  842. // // }
  843. // })
  844. // .catch((err) => {
  845. // _this.$message.error("上传失败");
  846. // console.error(err);
  847. // });
  848. // }
  849. // } else {
  850. // loading.close();
  851. }
  852. let z = 2;
  853. let newArr = JSON.stringify(arr);
  854. let params = [
  855. {
  856. arr: newArr,
  857. userpassword: 123456,
  858. oid: _this.oid,
  859. },
  860. ];
  861. _this.ajax
  862. .post(_this.$store.state.api + "batchRegistrationMore", params)
  863. .then((res) => {
  864. if (res.data.type == 1) {
  865. _this.$message.error("有学生手机号码已被注册");
  866. z = 1;
  867. }
  868. if (res.data.type == 2) {
  869. _this.$message.error("有学生账号已被注册");
  870. z = 1;
  871. }
  872. if (res.data.type == 3) {
  873. _this.$message.error("有学生学号重复");
  874. z = 1;
  875. }
  876. if (z == 2) {
  877. _this.$message({
  878. message: "新增成功",
  879. type: "success",
  880. });
  881. _this.getStudent();
  882. }
  883. loading.close();
  884. })
  885. .catch((err) => {
  886. console.error(err);
  887. });
  888. _this.fileListUpload = [];
  889. };
  890. reader.readAsArrayBuffer(f);
  891. };
  892. if (rABS) {
  893. reader.readAsArrayBuffer(f);
  894. } else {
  895. reader.readAsBinaryString(f);
  896. }
  897. },
  898. getSchoolName() {
  899. let params = {
  900. oid: this.oid,
  901. };
  902. this.ajax
  903. .get(this.$store.state.api + "selectSchoolName2", params)
  904. .then((res) => {
  905. this.schoolName = res.data[0][0].name;
  906. })
  907. .catch((err) => {
  908. console.error(err);
  909. });
  910. },
  911. deleteStudent(id, state) {
  912. state = 0;
  913. let params = [{ uid: id, state: state }];
  914. this.$confirm("确定" + "删除" + "此学生吗?", "提示", {
  915. confirmButtonText: "确定",
  916. cancelButtonText: "取消",
  917. type: "warning",
  918. })
  919. .then(() => {
  920. this.ajax
  921. .post(this.$store.state.api + "deleteStudent", params)
  922. .then((res) => {
  923. this.$message({
  924. message: "操作成功",
  925. type: "success",
  926. });
  927. this.getStudent();
  928. })
  929. .catch((err) => {
  930. this.$message.error("操作失败");
  931. console.error(err);
  932. });
  933. })
  934. .catch(() => { });
  935. },
  936. updateStudentA(res) {
  937. this.userinfo = JSON.parse(JSON.stringify(res));
  938. this.userinfoA = JSON.parse(JSON.stringify(res));
  939. this.dialogVisibleUpdate = true;
  940. },
  941. updateStudent() {
  942. if (this.userinfo.name === "") {
  943. this.$message.error("学生姓名不能为空");
  944. return;
  945. } else if (!this.userinfo.classid) {
  946. this.$message.error("请为学生选择班级");
  947. return;
  948. } else if (this.userinfo.phonenumber != "" && !/^[1][3,4,5,7,8][0-9]{9}$/.test(this.userinfo.phonenumber)) {
  949. this.$message.error("手机号格式不正确");
  950. return;
  951. } else if (
  952. !/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/.test(this.userinfo.un)
  953. ) {
  954. this.$message.error("邮箱格式不正确");
  955. return;
  956. }
  957. if (this.time()) {
  958. if (this.userinfoA.un != this.userinfo.un) {
  959. let params = { un: this.userinfo.un };
  960. this.ajax
  961. .get(this.$store.state.api + "findMail", params)
  962. .then((res) => {
  963. if (res.data[0].length > 0) {
  964. this.$message.error("此学生账号已被注册");
  965. } else {
  966. this.update_Student();
  967. }
  968. })
  969. .catch((err) => {
  970. console.error(err);
  971. });
  972. }else{
  973. this.update_Student();
  974. }
  975. }
  976. },
  977. update_Student() {
  978. let params = [
  979. {
  980. userid: this.userinfo.userid,
  981. username: this.userinfo.un,
  982. alias: this.userinfo.name,
  983. ph: this.userinfo.phonenumber,
  984. sid: this.userinfo.studentid,
  985. cid: this.userinfo.classid,
  986. },
  987. ];
  988. this.ajax
  989. .post(this.$store.state.api + "updateStudentInfo", params)
  990. .then((res) => {
  991. this.$message({
  992. message: "修改成功",
  993. type: "success",
  994. });
  995. this.dialogVisibleUpdate = false;
  996. this.getStudent();
  997. })
  998. .catch((err) => {
  999. this.isLoading = false;
  1000. this.$message({
  1001. message: "修改失败",
  1002. type: "error",
  1003. });
  1004. console.error(err);
  1005. });
  1006. },
  1007. },
  1008. created() {
  1009. this.page = 1;
  1010. this.getStudent();
  1011. this.getSchoolName();
  1012. this.getClass();
  1013. },
  1014. };
  1015. </script>
  1016. <style scoped>
  1017. .pb_head>span:nth-child(2) {
  1018. font-size: 20px;
  1019. margin-left: 5px;
  1020. color: #828282;
  1021. }
  1022. .pb_head {
  1023. margin: 0 !important;
  1024. width: 100% !important;
  1025. }
  1026. .student_page {
  1027. margin-top: 10px;
  1028. }
  1029. .student_head {
  1030. margin-top: 10px;
  1031. padding-bottom: 10px;
  1032. display: flex;
  1033. justify-content: space-between;
  1034. }
  1035. .head_left {
  1036. display: flex;
  1037. align-items: center;
  1038. }
  1039. .head_right {
  1040. display: flex;
  1041. flex-direction: row;
  1042. flex-wrap: nowrap;
  1043. align-items: baseline;
  1044. }
  1045. .student_input>>>.el-input__inner {
  1046. height: 30px;
  1047. width: 190px;
  1048. font-size: 13px;
  1049. padding: 0 10px;
  1050. }
  1051. .student_button {
  1052. color: #fff;
  1053. background: #2268bc;
  1054. width: 60px;
  1055. height: 30px;
  1056. padding: 0 !important;
  1057. font-size: 12px;
  1058. line-height: 30px;
  1059. }
  1060. .head_right>button:nth-child(1) {
  1061. color: #fff;
  1062. background: #2268bc;
  1063. width: 70px;
  1064. height: 30px;
  1065. padding: 0 !important;
  1066. font-size: 12px;
  1067. line-height: 30px;
  1068. }
  1069. .head_right>button:nth-child(2) {
  1070. color: #fff;
  1071. background: #2268bc;
  1072. width: 70px;
  1073. height: 30px;
  1074. padding: 0 !important;
  1075. font-size: 12px;
  1076. line-height: 30px;
  1077. }
  1078. .head_right>div {
  1079. font-size: 12px;
  1080. line-height: 40px;
  1081. margin-left: 10px;
  1082. color: #2a6dbe;
  1083. text-decoration: underline;
  1084. cursor: pointer;
  1085. }
  1086. .student_table>>>.el-table--border td {
  1087. border-right: 0px !important;
  1088. }
  1089. .student_table>>>.el-table,
  1090. .student_table>>>.el-table__body-wrapper {
  1091. height: auto !important;
  1092. }
  1093. .el-table>>>.even_row {
  1094. background-color: #f1f1f1 !important;
  1095. }
  1096. .de_button {
  1097. color: #fff;
  1098. background: #5190fd;
  1099. width: 50px;
  1100. height: 25px;
  1101. padding: 0 !important;
  1102. font-size: 12px;
  1103. line-height: 25px;
  1104. }
  1105. .add_student>>>.el-dialog__header {
  1106. padding: 20px 20px 10px;
  1107. text-align: center;
  1108. background: #32455b;
  1109. }
  1110. .add_student>>>.el-dialog__title {
  1111. font-size: 14px !important;
  1112. color: #fff !important;
  1113. }
  1114. .add_student>>>.el-dialog__headerbtn {
  1115. font-size: 20px !important;
  1116. }
  1117. .add_student>>>.el-form-item__label {
  1118. margin-left: 65px;
  1119. }
  1120. .add_student>>>.el-form-item {
  1121. display: flex;
  1122. }
  1123. .add_student>>>.el-form-item__content {
  1124. margin: 0 !important;
  1125. }
  1126. .add_input {
  1127. width: 365px;
  1128. }
  1129. .add_student>>>.el-dialog__footer {
  1130. text-align: center !important;
  1131. }
  1132. .right {
  1133. width: 250px;
  1134. color: #fff;
  1135. background: #0e72e6;
  1136. margin-bottom: 20px;
  1137. }
  1138. .header-title {
  1139. display: flex;
  1140. }
  1141. .logoImg {
  1142. width: 30px;
  1143. }
  1144. .logoImg>img {
  1145. width: 100%;
  1146. height: 100%;
  1147. }
  1148. .title_add_student {
  1149. margin: 0 auto;
  1150. color: #fff;
  1151. }
  1152. .upload-demo {
  1153. line-height: 0px !important;
  1154. }
  1155. .upload-demo>>>.el-button {
  1156. color: #fff;
  1157. background: #2268bc;
  1158. width: 70px;
  1159. height: 30px;
  1160. padding: 0 !important;
  1161. font-size: 12px;
  1162. line-height: 0 !important;
  1163. }
  1164. .userImg {
  1165. display: flex;
  1166. flex-direction: row;
  1167. justify-content: center;
  1168. align-items: center;
  1169. }
  1170. .tx {
  1171. width: 40px;
  1172. margin-right: 10px;
  1173. }
  1174. .delete {
  1175. width: 25px;
  1176. height: 25px;
  1177. cursor: pointer;
  1178. margin-left: 10px;
  1179. }
  1180. .tx>img,
  1181. .delete>img {
  1182. width: 100%;
  1183. height: 100%;
  1184. }
  1185. .newCss {
  1186. display: flex;
  1187. flex-direction: row;
  1188. flex-wrap: nowrap;
  1189. align-items: baseline;
  1190. }
  1191. .student_input.el-input {
  1192. width: auto;
  1193. }
  1194. .student_input {
  1195. margin-right: 10px;
  1196. }
  1197. .student_input>>>.el-input__icon {
  1198. line-height: unset;
  1199. }
  1200. .btnBox {
  1201. display: flex;
  1202. align-items: center;
  1203. }
  1204. </style>