123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- <template>
- <section class="content">
- <LinkTitlesCustom :currentPaths="['word文件上传']" />
- <!-- 正文信息 -->
- <div
- class="box-body"
- v-loading.body="fileLoading"
- element-loading-text="试题上传中,请稍后..."
- >
- <el-form
- :inline="true"
- :model="formSearch"
- label-position="right"
- label-width="100px"
- >
- <el-row>
- <el-form-item label="课程名称" label-width="120px" class="pull-left">
- <el-select
- v-model="formSearch.courseNo"
- class="form_width"
- filterable
- :remote-method="getCourses"
- remote
- clearable
- placeholder="请选择"
- @change="searchCourseName"
- >
- <el-option
- v-for="item in courseInfoSelect"
- :label="item.courseInfo"
- :value="item.courseNo"
- :key="item.courseNo"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item class="pull-right">
- <el-button type="primary" @click="back"
- ><i class="el-icon-arrow-left"></i> 返回</el-button
- >
- </el-form-item>
- </el-row>
- <el-row>
- <el-form-item label="试卷名称" label-width="120px" class="pull-left">
- <el-input
- placeholder="试卷名称"
- class="form_width"
- v-model="formSearch.name"
- ></el-input>
- </el-form-item>
- </el-row>
- <el-row>
- <el-form-item label="总分校验" label-width="120px" class="pull-left">
- <el-radio v-model="scoreCheck" label="1">开启</el-radio>
- <el-radio v-model="scoreCheck" label="0">关闭</el-radio>
- </el-form-item>
- </el-row>
- <el-row v-if="scoreCheck == 1">
- <el-form-item label="试卷总分" label-width="120px" class="pull-left">
- <el-input
- placeholder="试卷总分"
- class="form_width"
- v-model="formSearch.totalScore"
- ></el-input>
- </el-form-item>
- </el-row>
- <!--
- <el-row>
- <el-form-item label="相同大题名称" label-width="120px" class="pull-left">
- <el-radio v-model="formSearch.sameName" label="1">合并</el-radio>
- <el-radio v-model="formSearch.sameName" label="0">不合并</el-radio>
- </el-form-item>
- </el-row>
- -->
- <el-row>
- <el-form-item>
- <el-upload
- class="form_left"
- ref="upload"
- accept="application/vnd.openxmlformats-officedocument.wordprocessingml.document"
- :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 slot="trigger" type="primary">选择文件</el-button>
- <el-button
- style="margin-left:10px;"
- type="primary"
- @click="submitUpload"
- >确认上传
- </el-button>
- <el-button
- style="margin-left: 10px;"
- type="danger"
- @click="removeFile"
- >清空文件
- </el-button>
- <div slot="tip" class="el-upload__tip">只能上传docx文件</div>
- </el-upload>
- </el-form-item>
- </el-row>
- </el-form>
- <el-dialog title="错误提示" v-model="errDialog">
- <span style="font-size: large">{{ errMessage }} !</span>
- <span slot="footer" class="dialog-footer">
- <el-button @click="errDialog = false">确定</el-button>
- </span>
- </el-dialog>
- </div>
- </section>
- </template>
- <script>
- import { CORE_API, QUESTION_API } from "@/constants/constants";
- import { mapState } from "vuex";
- import LinkTitlesCustom from "@/components/LinkTitlesCustom.vue";
- export default {
- components: { LinkTitlesCustom },
- data() {
- return {
- scoreCheck: "0",
- formSearch: {
- courseNo: "",
- couresName: "",
- name: "",
- totalScore: "",
- courseLevel: "",
- sameName: "0"
- },
- courseList: [],
- uploadAction: "",
- errMessage: "",
- uploadData: {},
- fileLoading: false,
- button_tpye: false,
- errDialog: false,
- fileList: [],
- uploadHeaders: {}
- };
- },
- methods: {
- searchCourseName() {
- for (let course of this.courseList) {
- if (course.code == this.formSearch.courseNo) {
- this.formSearch.courseName = course.name;
- this.formSearch.courseLevel = course.level;
- console.log(this.formSearch.courseLevel);
- }
- }
- },
- beforeUpload(file) {
- console.log(file);
- },
- uploadProgress() {
- console.log("uploadProgress");
- },
- uploadSuccess(response) {
- this.$notify({
- message: "上传成功",
- type: "success"
- });
- this.fileLoading = false;
- this.$router.push({
- path: "/edit_paper/" + response.id + "/import_paper"
- });
- },
- uploadError(err) {
- console.log(err);
- var result = err.message.match(/\{.+}/);
- var errMessage = JSON.parse(result[0]).desc;
- this.errDialog = true;
- this.errMessage = errMessage;
- this.fileLoading = false;
- },
- initUpload() {
- this.fileList = [];
- this.formSearch.name = "";
- this.formSearch.courseNo = "";
- },
- checkUpload() {
- if (!this.formSearch.courseNo) {
- this.$notify({
- message: "课程名称不能为空",
- type: "error"
- });
- return false;
- } else {
- this.uploadData.courseNo = this.formSearch.courseNo;
- this.uploadData.courseName = this.formSearch.courseName;
- this.uploadData.level = this.formSearch.courseLevel;
- this.uploadData.sameName = this.formSearch.sameName;
- }
- if (!this.formSearch.name) {
- this.$notify({
- message: "试卷名称不能为空",
- type: "error"
- });
- return false;
- } else {
- this.uploadData.name = this.formSearch.name;
- }
- if (this.scoreCheck == 1 && !this.formSearch.totalScore) {
- this.$notify({
- message: "试卷总分不能为空",
- type: "error"
- });
- return false;
- } else {
- this.uploadData.totalScore = this.formSearch.totalScore;
- }
- var fileList = this.$refs.upload.uploadFiles;
- if (fileList.length == 0) {
- this.$notify({
- message: "上传文件不能为空",
- type: "error"
- });
- return false;
- }
- if (fileList.length > 1) {
- this.$notify({
- message: "每次只能上传一个word文件",
- type: "error"
- });
- return false;
- }
- for (let file of fileList) {
- if (!file.name.endsWith(".docx")) {
- this.$notify({
- message: "上传文件必须为docx格式",
- type: "error"
- });
- this.initUpload();
- return false;
- }
- }
- return true;
- },
- //确定上传
- submitUpload() {
- console.log("this form:", this.formSearch);
- if (!this.checkUpload()) {
- return false;
- }
- this.$refs.upload.submit();
- this.fileLoading = true;
- },
- //清空文件
- removeFile() {
- // this.fileList = [];
- this.$refs.upload.clearFiles();
- },
- //返回
- back() {
- this.$router.push({ path: "/questions/import_paper/0" });
- },
- //查询所有课程
- getCourses(query) {
- query = query.trim();
- if (query) {
- if (!(query.indexOf("(") > -1 && query.indexOf(")") > -1)) {
- this.courseLoading = true;
- this.$http
- .get(CORE_API + "/course/query?name=" + query + "&enable=true")
- .then(response => {
- this.courseList = response.data;
- this.courseLoading = false;
- });
- }
- } else {
- this.courseList = [];
- }
- }
- },
- computed: {
- ...mapState({ user: state => state.user }),
- courseInfoSelect() {
- var courseList = [];
- for (let course of this.courseList) {
- var courseInfo = course.name + "(" + course.code + ")";
- var courseNo = course.code;
- courseList.push({ courseNo: courseNo, courseInfo: courseInfo });
- }
- return courseList;
- }
- },
- watch: {
- scoreCheck: function() {
- if (this.scoreCheck == 0) {
- this.formSearch.totalScore = "";
- }
- }
- },
- created() {
- this.uploadAction = QUESTION_API + "/importPaper";
- this.uploadData = { name: this.formSearch.name };
- this.uploadHeaders = {
- key: this.user.key,
- token: this.user.token
- };
- }
- };
- </script>
- <style scoped>
- .form_width {
- width: 200px;
- }
- .form_left {
- margin-left: 50px;
- }
- </style>
|