123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379 |
- <template>
- <section class="content" style="margin-top: -10px;">
- <div class="box box-info">
- <!-- 正文信息 -->
- <div class="box-body">
- <div style="margin-top: 20px;">
- <el-button
- size="small"
- type="primary"
- icon="el-icon-upload2"
- @click="imp"
- >导入
- </el-button>
- </div>
- <div style="width: 100%;margin-bottom: 10px;"></div>
- <!-- 导入弹窗 -->
- <el-dialog
- title="考生信息导入页"
- size="tiny"
- :visible.sync="studentImportDialog"
- >
- <el-form :model="studentImportForm" ref="studentImportForm">
- <el-row>
- <el-form-item style="margin-left:30px" label="考试" prop="value">
- <el-select
- class="input"
- :remote-method="queryExams"
- remote
- :loading="queryExamsLoading"
- filterable
- clearable
- v-model="studentImportForm.examId"
- placeholder="请选择"
- >
- <el-option
- v-for="item in examList"
- :label="item.name"
- :value="item.id"
- :key="item.id"
- :disabled="!item.enable"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-row>
- <el-row>
- <el-form-item style="margin-left:30px">
- <el-upload
- class="form_left"
- ref="upload"
- accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
- :action="uploadAction"
- :headers="uploadHeaders"
- :data="uploadData"
- :before-upload="beforeUpload"
- :on-progress="uploadProgress"
- :on-success="uploadSuccess"
- :on-error="uploadError"
- :file-list="fileList"
- :auto-upload="false"
- :multiple="false"
- >
- <el-button
- size="small"
- slot="trigger"
- type="primary"
- icon="el-icon-search"
- >选择文件</el-button
- >
- <el-button
- size="small"
- style="margin-left:10px;"
- type="primary"
- @click="submitUpload"
- icon="el-icon-check"
- >确认上传
- </el-button>
- <el-button
- size="small"
- style="margin-left: 10px;"
- type="primary"
- @click="removeFile"
- icon="el-icon-refresh"
- >清空文件
- </el-button>
- <el-button
- size="small"
- type="primary"
- @click="exportFile"
- icon="el-icon-download"
- >下载模板
- </el-button>
- <div slot="tip" class="el-upload__tip">只能上传xlsx文件</div>
- </el-upload>
- </el-form-item>
- </el-row>
- </el-form>
- </el-dialog>
- <!-- 页面列表 -->
- <el-table
- :data="tableData"
- border
- style="width: 100%;text-align:center;"
- >
- <el-table-column
- prop="id"
- width="50"
- label="ID"
- sortable
- ></el-table-column>
- <el-table-column prop="rootOrgName" label="学校" sortable>
- </el-table-column>
- <el-table-column prop="examName" label="考试" sortable>
- </el-table-column>
- <el-table-column prop="fileName" label="上传文件名" sortable>
- </el-table-column>
- <el-table-column prop="statusDesc" width="120" label="状态">
- </el-table-column>
- <el-table-column prop="errorDesc" label="异常"> </el-table-column>
- <el-table-column
- prop="creationTime"
- width="170"
- label="上传时间"
- sortable
- >
- </el-table-column>
- <el-table-column label="操作" width="230">
- <template slot-scope="scope">
- <div>
- <el-button
- size="mini"
- type="primary"
- plain
- icon="el-icon-download"
- @click="getUploadedFile(scope.row.id)"
- >下载文件
- </el-button>
- <el-button
- :disabled="
- !(
- scope.row.status == 'DATA_PROCESSING_COMPLETE' ||
- scope.row.status == 'ERROR'
- )
- "
- size="mini"
- type="primary"
- plain
- icon="el-icon-download"
- @click="getReports(scope.row.id)"
- >导出报告
- </el-button>
- </div>
- </template>
- </el-table-column>
- </el-table>
- <div class="page pull-right">
- <el-pagination
- @current-change="handleCurrentChange"
- :current-page="currentPage"
- :page-size="pageSize"
- :page-sizes="[10, 20, 50, 100, 200, 300]"
- @size-change="handleSizeChange"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- >
- </el-pagination>
- </div>
- </div>
- </div>
- </section>
- </template>
- <style scoped></style>
- <script>
- import { TASK_API, EXAM_WORK_API } from "@/constants/constants.js";
- import { mapState } from "vuex";
- let _this = null;
- export default {
- data() {
- return {
- formSearch: {},
- uploadAction: TASK_API + "/examStudentImport/import",
- studentImportDialog: false,
- examList: [],
- uploadHeaders: {},
- uploadData: { examId: "" },
- fileList: [],
- fileLoading: false,
- queryExamsLoading: false,
- studentImportForm: {
- examId: null
- },
- tableData: [],
- currentPage: 1,
- pageSize: 10,
- total: 0
- };
- },
- computed: {
- ...mapState({ user: state => state.user })
- },
- methods: {
- handleCurrentChange(val) {
- this.currentPage = val;
- this.queryTableDatas();
- },
- handleSizeChange(val) {
- this.pageSize = val;
- this.queryTableDatas();
- },
- imp() {
- this.studentImportDialog = true;
- this.initUpload();
- },
- initUpload() {
- if (this.$refs.studentImportForm) {
- this.$refs.studentImportForm.resetFields();
- }
- this.fileList = [];
- this.studentImportForm.examId = null;
- this.examList = [];
- this.queryExams("");
- },
- beforeUpload(file) {
- console.log(file);
- },
- uploadProgress(event, file, fileList) {
- console.log("uploadProgress");
- console.log(event);
- console.log(file);
- console.log(fileList);
- },
- uploadSuccess(response, file, fileList) {
- console.log("uploadSuccess");
- console.log(response);
- console.log(file);
- console.log(fileList);
- this.$notify({
- message: "上传成功",
- type: "success"
- });
- this.fileLoading = false;
- this.studentImportDialog = false;
- this.queryTableDatas();
- },
- uploadError(response, file, fileList) {
- console.log("uploadError");
- console.log(response);
- console.log(file);
- console.log(fileList);
- var json = JSON.parse(response.message);
- if (response.status == 500) {
- this.$notify({
- message: json.desc,
- type: "error"
- });
- }
- this.fileLoading = false;
- },
- //确定上传
- submitUpload() {
- if (!this.checkUpload()) {
- return false;
- }
- this.$refs.upload.submit();
- this.fileLoading = true;
- },
- checkUpload() {
- if (!this.studentImportForm.examId) {
- this.$notify({
- message: "请选择考试批次",
- type: "error"
- });
- return false;
- } else {
- this.uploadData.examId = this.studentImportForm.examId;
- }
- var fileList = this.$refs.upload.uploadFiles;
- if (fileList.length == 0) {
- this.$notify({
- message: "上传文件不能为空",
- type: "error"
- });
- return false;
- }
- if (fileList.length > 1) {
- this.$notify({
- message: "每次只能上传一个文件",
- type: "error"
- });
- return false;
- }
- for (let file of fileList) {
- if (!file.name.endsWith(".xlsx")) {
- this.$notify({
- message: "上传文件必须为xlsx格式",
- type: "error"
- });
- this.initUpload();
- return false;
- }
- }
- return true;
- },
- //清空文件
- removeFile() {
- this.$refs.upload.clearFiles();
- },
- //下载模板
- exportFile() {
- window.location.href =
- "/api/ecs_exam_work/exam_student/downloadTemplate?$key=" +
- this.user.key +
- "&$token=" +
- this.user.token;
- },
- //下载报告
- getReports(id) {
- window.location.href =
- TASK_API +
- "/examStudentImport/getReports/" +
- id +
- "?$key=" +
- this.user.key +
- "&$token=" +
- this.user.token;
- },
- //下载导入文件
- getUploadedFile(id) {
- window.location.href =
- TASK_API +
- "/examStudentImport/getUploadedFile/" +
- id +
- "?$key=" +
- this.user.key +
- "&$token=" +
- this.user.token;
- },
- queryExams(name) {
- console.log("queryExams; name: " + name);
- this.queryExamsLoading = true;
- this.$httpWithMsg
- .get(EXAM_WORK_API + "/exam/queryByNameLike?name=" + name)
- .then(response => {
- this.queryExamsLoading = false;
- this.examList = response.data;
- })
- .catch(() => {
- this.queryExamsLoading = false;
- });
- },
- queryTableDatas: function() {
- var url =
- TASK_API +
- "/examStudentImport/all/" +
- (this.currentPage - 1) +
- "/" +
- this.pageSize;
- this.$httpWithMsg.get(url).then(response => {
- console.log(response);
- _this.tableData = response.data.list;
- _this.total = response.data.total;
- });
- }
- },
- created() {
- _this = this;
- this.queryTableDatas();
- this.uploadHeaders = {
- key: this.user.key,
- token: this.user.token
- };
- }
- };
- </script>
|