student.vue 27 KB

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