123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <template>
- <div class="student-manage">
- <div class="part-box part-box-filter part-box-flex">
- <el-form ref="FilterForm" label-position="left" label-width="90px" inline>
- <el-form-item label="姓名/学号:">
- <el-input
- style="width: 142px;"
- v-model.trim="filter.queryParams"
- placeholder="姓名/学号"
- clearable
- ></el-input>
- </el-form-item>
- <el-form-item>
- <el-button
- v-if="checkPrivilege('button', 'select')"
- type="primary"
- @click="toPage(1)"
- >查询</el-button
- >
- </el-form-item>
- </el-form>
- <div class="part-box-action">
- <el-button
- type="success"
- icon="el-icon-download"
- v-if="checkPrivilege('button', 'import')"
- ><a :href="downloadUrl" :download="dfilename">模板下载</a></el-button
- >
- <upload-button
- v-if="checkPrivilege('button', 'import')"
- btn-icon="el-icon-circle-plus-outline"
- btn-content="批量导入"
- btn-type="success"
- :upload-url="uploadUrl"
- :format="['xls', 'xlsx']"
- @upload-error="uplaodError"
- @upload-success="uploadSuccess"
- >
- </upload-button>
- <el-button
- v-if="checkPrivilege('button', 'add')"
- type="primary"
- icon="el-icon-circle-plus-outline"
- @click="toAdd"
- >新增学生</el-button
- >
- </div>
- </div>
- <div class="part-box part-box-pad">
- <el-table ref="TableList" :data="dataList">
- <el-table-column prop="studentName" label="姓名"></el-table-column>
- <el-table-column prop="studentCode" label="学号"></el-table-column>
- <el-table-column prop="phoneNumber" label="手机号">
- <span slot-scope="scope">{{
- scope.row.phoneNumber | defaultFieldFilter
- }}</span>
- </el-table-column>
- <el-table-column prop="campusName" label="校区"></el-table-column>
- <el-table-column prop="clazz" label="班级"></el-table-column>
- <el-table-column label="操作" width="120px">
- <template slot-scope="scope">
- <el-button
- v-if="checkPrivilege('link', 'edit')"
- class="btn-primary"
- type="text"
- @click="toEdit(scope.row)"
- >编辑</el-button
- >
- <el-button
- v-if="checkPrivilege('link', 'delete')"
- class="btn-danger"
- type="text"
- @click="toDelete(scope.row)"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <div class="part-page">
- <el-pagination
- background
- layout="total,prev, pager, next"
- :current-page="current"
- :total="total"
- :page-size="size"
- @current-change="toPage"
- >
- </el-pagination>
- </div>
- </div>
- <modify-student
- :instance="curRow"
- @modified="getList"
- ref="ModifyStudent"
- ></modify-student>
- </div>
- </template>
- <script>
- import { studentListQuery, deleteStudent } from "../api";
- import ModifyStudent from "../components/ModifyStudent";
- import UploadButton from "../../../components/UploadButton";
- export default {
- name: "student-manage",
- components: { ModifyStudent, UploadButton },
- data() {
- return {
- filter: {
- queryParams: ""
- },
- current: 1,
- size: this.GLOBAL.pageSize,
- total: 0,
- dataList: [],
- curRow: {},
- // import
- uploadUrl: "/api/admin/basic/student/data_import",
- downloadUrl: "/temps/studentTemplate.xlsx",
- dfilename: "学生导入模板.xlsx"
- };
- },
- mounted() {
- this.getList();
- },
- methods: {
- async getList() {
- if (!this.checkPrivilege("list", "list")) return;
- const datas = {
- ...this.filter,
- pageNumber: this.current,
- pageSize: this.size
- };
- const data = await studentListQuery(datas);
- this.dataList = data.records;
- this.total = data.total;
- },
- toPage(page) {
- this.current = page;
- this.getList();
- },
- toAdd() {
- this.curRow = {};
- this.$refs.ModifyStudent.open();
- },
- toEdit(row) {
- this.curRow = row;
- this.$refs.ModifyStudent.open();
- },
- toDelete(row) {
- this.$confirm(`确定要删除学生【${row.studentName}】吗?`, "提示", {
- type: "warning"
- })
- .then(async () => {
- await deleteStudent([row.id]);
- this.$message.success("删除成功!");
- this.deletePageLastItem();
- })
- .catch(() => {});
- },
- // import
- uplaodError(errorData) {
- this.$notify.error({ title: "错误提示", message: errorData.message });
- },
- uploadSuccess() {
- this.$message.success("文件上传成功,后台正在导入!");
- this.getList();
- }
- }
- };
- </script>
|