student.vue 26 KB

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