123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787 |
- <template>
- <section class="content">
- <div v-show="isClear == 1">
- <LinkTitlesCustom :currentPaths="['题库管理 ', '考试试卷管理']" />
- </div>
- <div class="box-body">
- <el-form
- :inline="true"
- :model="formSearch"
- label-position="right"
- label-width="70px"
- >
- <el-row>
- <el-col :span="6">
- <el-form-item label="课程名称">
- <el-select
- class="search_width"
- v-model="formSearch.courseNo"
- filterable
- :remote-method="getCourses"
- remote
- clearable
- placeholder="全部"
- size="small"
- >
- <el-option
- v-for="item in courseInfoSelect"
- :label="item.courseInfo"
- :value="item.courseNo"
- :key="item.courseNo"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="试卷名称">
- <el-input
- class="search_width"
- v-model="formSearch.name"
- placeholder="试卷名称"
- size="small"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="层次">
- <el-select
- class="search_width"
- v-model="formSearch.level"
- clearable
- placeholder="请选择"
- size="small"
- >
- <el-option
- v-for="item in levelList"
- :label="item.label"
- :value="item.value"
- :key="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <div class="search_down">
- <el-button size="small" type="primary" @click="searchFrom"
- ><i class="el-icon-search"></i> 查询</el-button
- >
- <el-button size="small" @click="resetForm"
- ><i class="el-icon-refresh"></i> 重 置</el-button
- >
- <el-button size="small" type="primary" @click="genPaperDetail"
- ><i class="el-icon-plus"></i> 组卷</el-button
- >
- </div>
- </el-col>
- </el-row>
- <div
- style="width: 100%; border-bottom: 1px solid #ddd; margin: 10px 0;"
- ></div>
- <el-row>
- <el-form-item>
- <span>批量操作:</span>
- <el-button
- size="small"
- type="danger"
- @click="batchDeleteGenPaper"
- :disabled="noBatchSelected"
- >
- <i class="el-icon-delete"></i> 删除成卷
- </el-button>
- <el-button
- size="small"
- type="primary"
- @click="openBatchExportPaperDialog"
- :disabled="noBatchSelected"
- ><i class="el-icon-download"></i> 下载成卷</el-button
- >
- <el-button
- size="small"
- type="primary"
- @click="openPrints"
- :disabled="noBatchSelected"
- ><i class="el-icon-share"></i> 发送成卷</el-button
- >
- </el-form-item>
- </el-row>
- </el-form>
- <div style="width: 100%;margin-bottom: 10px;"></div>
- <el-table
- v-loading="loading"
- element-loading-text="拼命加载中"
- :data="tableData"
- border
- style="width: 100%"
- @selection-change="selectChange"
- >
- <el-table-column type="selection" width="35"></el-table-column>
- <el-table-column label="课程名称" width="180">
- <template slot-scope="scope">
- <span>{{ scope.row.course.name }}</span>
- </template>
- </el-table-column>
- <el-table-column label="课程代码" width="80">
- <template slot-scope="scope">
- <span>{{ scope.row.course.code }}</span>
- </template>
- </el-table-column>
- <el-table-column label="试卷名称" width="180">
- <template slot-scope="scope">
- <span>{{ scope.row.name }}</span>
- </template>
- </el-table-column>
- <el-table-column label="试卷总分" width="80">
- <template slot-scope="scope">
- <span>{{ scope.row.totalScore }}</span>
- </template>
- </el-table-column>
- <el-table-column label="试卷难度" width="80">
- <template slot-scope="scope">
- <span>{{ scope.row.difficultyDegree }}</span>
- </template>
- </el-table-column>
- <el-table-column label="大题数量" width="80">
- <template slot-scope="scope">
- <span>{{ scope.row.paperDetailCount }}</span>
- </template>
- </el-table-column>
- <el-table-column label="录入员" width="150">
- <template slot-scope="scope">
- <span>{{ scope.row.creator }}</span>
- </template>
- </el-table-column>
- <el-table-column label="创建时间" width="153">
- <template slot-scope="scope">
- <span>{{ scope.row.createTime }}</span>
- </template>
- </el-table-column>
- <el-table-column label="修改人" width="150">
- <template slot-scope="scope">
- <span>{{ scope.row.lastModifyName }}</span>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="180" fixed="right">
- <template slot-scope="scope">
- <div class="operate_left">
- <el-button
- size="mini"
- type="primary"
- @click="editGenPaper(scope.row)"
- plain
- ><i class="el-icon-edit"></i>编辑</el-button
- >
- <el-dropdown class="button_left">
- <el-button type="primary" size="mini" plain>
- 更多 <i class="el-icon-arrow-down el-icon--right"></i>
- </el-button>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item>
- <el-button
- size="mini"
- type="primary"
- @click="openExportDialog(scope.row)"
- plain
- ><i class="el-icon-download"></i> 下载</el-button
- >
- </el-dropdown-item>
- <el-dropdown-item>
- <el-button
- size="mini"
- type="primary"
- @click="previewPDF2(scope.row)"
- plain
- ><i class="el-icon-zoom-in"></i> 预览</el-button
- >
- </el-dropdown-item>
- <el-dropdown-item>
- <el-button
- size="mini"
- type="primary"
- @click="openPrint(scope.row)"
- plain
- ><i class="el-icon-share"></i> 发送</el-button
- >
- </el-dropdown-item>
- <el-dropdown-item>
- <el-button
- size="mini"
- type="danger"
- @click="deleteGenPaper(scope.row)"
- ><i class="el-icon-delete"></i> 删除</el-button
- >
- </el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </div>
- </template>
- </el-table-column>
- </el-table>
- <div class="page pull-right">
- <el-pagination
- @current-change="handleCurrentChange"
- :current-page="currentPage"
- :page-size="pageSize"
- layout="total, prev, pager, next, jumper"
- :total="total"
- >
- </el-pagination>
- </div>
- </div>
- <el-dialog title="导出" :visible.sync="exportDialog">
- <el-form :model="exportModel" label-position="right" label-width="80px">
- <el-row v-if="isShow">
- <el-col :md="12">
- <el-form-item label="课程名称">
- {{ exportModel.courseName }}
- </el-form-item>
- </el-col>
- </el-row>
- <el-row v-if="isShow">
- <el-col :md="12">
- <el-form-item label="课程代码">
- {{ exportModel.courseCode }}
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :md="24">
- <el-form-item label="导出内容">
- <el-checkbox-group v-model="exportModel.exportContentList">
- <el-checkbox label="PAPER">试卷</el-checkbox>
- <el-checkbox label="ANSWER">答案</el-checkbox>
- <el-checkbox label="COMPUTERTEST_PACKAGE"
- >机考数据包</el-checkbox
- >
- <el-checkbox
- v-if="isShowPrintExamPackage"
- label="PRINT_EXAM_PACKAGE"
- >分布式印刷数据包
- </el-checkbox>
- <el-input
- v-if="isShowPrintExamPackagePassword"
- v-model="printExamPackagePassword"
- placeholder="加密密码 (可选)"
- type="password"
- style="width: 150px"
- ></el-input>
- </el-checkbox-group>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :md="24" class="text-center">
- <el-button type="primary" @click="exportPaperInfo"
- >开始导出</el-button
- >
- </el-col>
- </el-row>
- </el-form>
- </el-dialog>
- <el-dialog title="传送印刷平台" :visible.sync="dialogModel" width="500px">
- <el-form
- :model="printFrom"
- ref="printFrom"
- :rules="rules"
- label-position="right"
- label-width="120px"
- inline-message
- >
- <el-row>
- <el-form-item label="学校名称">
- <el-input
- class="dialog_input_width"
- v-model="this.Org.name"
- :disabled="true"
- ></el-input>
- </el-form-item>
- </el-row>
- <el-row>
- <el-form-item label="考试名称" prop="examId">
- <el-select
- class="dialog_input_width"
- v-model="printFrom.examId"
- filterable
- clearable
- :remote-method="getExams"
- remote
- placeholder="请选择"
- >
- <el-option
- v-for="item in examList"
- :label="item.name"
- :value="item.id"
- :key="item.id"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-row>
- <el-row class="margin_top_10 margin_left_120">
- <el-button type="primary" @click="sendPrint('printFrom')"
- >保 存</el-button
- >
- <el-button @click="resetForm2('printFrom')"
- ><i class="el-icon-refresh"></i> 重 置</el-button
- >
- <el-button @click="cancel('printFrom')" type="primary"
- ><i class="el-icon-arrow-left"></i> 返 回</el-button
- >
- </el-row>
- </el-form>
- </el-dialog>
- </section>
- </template>
- <script>
- import { CORE_API, QUESTION_API, EXAM_WORK_API } from "@/constants/constants";
- import { LEVEL_TYPE } from "../constants/constants";
- import { mapState } from "vuex";
- import LinkTitlesCustom from "@/components/LinkTitlesCustom.vue";
- export default {
- components: { LinkTitlesCustom },
- data() {
- return {
- isClear: 0,
- courseLoading: false,
- formSearch: {
- courseNo: "",
- courseName: "",
- level: "",
- name: ""
- },
- tableData: [],
- currentPage: 1,
- pageSize: 10,
- total: 0,
- loading: false,
- courseList: [],
- levelList: LEVEL_TYPE,
- dialogVisible: false,
- selectedPaperIds: [],
- fileList: [],
- uploadAction: "",
- formUpload: {
- paperName: ""
- },
- uploadData: {},
- fileLoading: false,
- exportDialog: false,
- exportModel: {
- id: "",
- courseCode: "",
- courseName: "",
- exportContentList: []
- },
- isShow: true,
- examList: [],
- Org: {},
- dialogModel: false,
- rowIds: [],
- isShowPrintExamPackage: false,
- isShowPrintExamPackagePassword: false,
- printExamPackagePassword: "",
- printFrom: {
- examId: ""
- },
- rules: {
- examId: [{ required: true, message: "请输入名称", trigger: "change" }]
- }
- };
- },
- methods: {
- resetForm() {
- this.formSearch = {
- courseNo: "",
- courseName: "",
- level: "",
- name: ""
- };
- },
- //查询
- searchFrom() {
- this.currentPage = 1;
- this.searchGenPaper();
- },
- searchGenPaper() {
- this.loading = true;
- var url =
- QUESTION_API + "/genPaper/" + this.currentPage + "/" + this.pageSize;
- this.$http.get(url, { params: this.formSearch }).then(response => {
- this.tableData = response.data.content;
- this.total = response.data.totalElements;
- });
- this.loading = false;
- },
- genPaperDetail() {
- var courseNo = this.formSearch.courseNo;
- if (!courseNo) {
- this.$notify({
- title: "警告",
- message: "请选择课程",
- type: "warning"
- });
- } else {
- var course = this.getCourseObj(courseNo);
- this.formSearch.courseName = course.name;
- var level = course.level;
- sessionStorage.setItem("gen_paper", JSON.stringify(this.formSearch));
- sessionStorage.setItem("gen_paper_currentPage", this.currentPage);
- this.$router.push({
- path: "/questions/gen_paper_detail/" + courseNo + "/" + level
- });
- }
- },
- handleCurrentChange(val) {
- this.currentPage = val;
- this.searchGenPaper();
- },
- getCourseObj(courseNo) {
- for (let course of this.courseList) {
- if (course.code == courseNo) {
- return course;
- }
- }
- },
- exportGenPaper(row) {
- window.open(
- QUESTION_API + "/paper/export/" + row.id + "/" + this.user.rootOrgName
- );
- },
- editGenPaper(row) {
- this.getCourseName(this.formSearch.courseNo);
- sessionStorage.setItem("gen_paper", JSON.stringify(this.formSearch));
- sessionStorage.setItem("gen_paper_currentPage", this.currentPage);
- this.$router.push({
- path: "/edit_paper/" + row.id + "/gen_paper"
- });
- },
- deleteGenPaper(row) {
- this.$confirm("确认删除试卷吗?", "提示", {
- type: "warning"
- }).then(() => {
- this.loading = true;
- this.$http.delete(QUESTION_API + "/paper/" + row.id).then(
- () => {
- this.$notify({
- message: "删除成功",
- type: "success"
- });
- this.searchGenPaper();
- },
- response => {
- this.$notify({
- message: response.data.msg,
- type: "error"
- });
- this.loading = false;
- }
- );
- });
- },
- selectChange(row) {
- this.selectedPaperIds = [];
- row.forEach(element => {
- this.selectedPaperIds.push(element.id);
- });
- },
- batchDeleteGenPaper() {
- var paperIds = this.paperIds;
- console.log("试卷id:", paperIds);
- if (this.selectedPaperIds.length != 0) {
- this.$confirm("确认删除试卷吗?", "提示", {
- type: "warning"
- }).then(() => {
- this.loading = true;
- this.$http.delete(QUESTION_API + "/paper/" + paperIds).then(
- () => {
- this.$notify({
- message: "删除成功",
- type: "success"
- });
- this.searchGenPaper();
- this.selectedPaperIds = [];
- },
- response => {
- this.$notify({
- message: response.data.msg,
- type: "error"
- });
- this.loading = false;
- }
- );
- });
- } else {
- this.$notify({
- message: "请勾选删除的数据",
- type: "warning"
- });
- }
- },
- //查询所有课程
- 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 = [];
- }
- },
- //打开导出弹框
- openExportDialog(row) {
- this.isShow = true;
- this.isShow = true;
- this.exportDialog = true;
- this.exportModel.id = row.id;
- this.exportModel.courseCode = row.course.code;
- this.exportModel.courseName = row.course.name;
- this.exportModel.exportContentList = [];
- /* 分布式印刷数据包设置 */
- this.isShowPrintExamPackage = true;
- this.isShowPrintExamPackagePassword = false;
- this.printExamPackagePassword = "";
- },
- //打开批量弹出框
- openBatchExportPaperDialog() {
- if (this.selectedPaperIds.length != 0) {
- this.exportDialog = true;
- this.isShow = false;
- this.isShow = false;
- this.exportModel.exportContentList = [];
- } else {
- this.$notify({
- message: "请勾选导出的数据",
- type: "warning"
- });
- }
- /* 分布式印刷数据包设置 */
- this.isShowPrintExamPackage = false;
- this.isShowPrintExamPackagePassword = false;
- this.printExamPackagePassword = "";
- },
- //导出试卷,答案,机考数据包
- exportPaperInfo() {
- if (this.exportModel.exportContentList.length == 0) {
- this.$notify({
- message: "请选择导出内容",
- type: "error"
- });
- return false;
- }
- if (this.printExamPackagePassword.length > 0) {
- var reg = /^[0-9A-Za-z]{6,12}$/;
- if (!reg.test(this.printExamPackagePassword)) {
- this.$notify({
- message: "加密密码请输入6至12位的数字或字母!",
- type: "error"
- });
- return false;
- }
- }
- var key = this.user.key;
- var token = this.user.token;
- if (this.isShow) {
- console.log("单个导出");
- window.location.href =
- QUESTION_API +
- "/paper/export/" +
- this.exportModel.id +
- "/" +
- this.exportModel.exportContentList +
- "/" +
- this.user.rootOrgName +
- "/" +
- this.user.displayName +
- "/onLine" +
- "?psw=" +
- this.printExamPackagePassword +
- "&$key=" +
- key +
- "&$token=" +
- token;
- this.exportDialog = false;
- } else {
- console.log("批量导出");
- var paperIds = this.paperIds;
- console.log(paperIds);
- window.location.href =
- QUESTION_API +
- "/paper/batch_export/" +
- paperIds +
- "/" +
- this.exportModel.exportContentList +
- "/" +
- this.user.rootOrgName +
- "/" +
- this.user.displayName +
- "/onLine" +
- "?$key=" +
- key +
- "&$token=" +
- token;
- this.exportDialog = false;
- console.log(paperIds);
- }
- },
- removeItem() {
- sessionStorage.removeItem("gen_paper");
- sessionStorage.removeItem("gen_paper_currentPage");
- },
- previewPDF2(row) {
- window.open(QUESTION_API + "/paper/pdf/" + row.id);
- },
- openPrint(row) {
- this.dialogModel = true;
- this.rowIds.push(row.id);
- },
- openPrints() {
- this.dialogModel = true;
- this.rowIds = this.selectedPaperIds;
- },
- cancel(formData) {
- this.resetForm2(formData);
- this.dialogModel = false;
- },
- resetForm2(formData) {
- this.printFrom.examId = "";
- this.$refs[formData].clearValidate();
- },
- //传至印刷模块
- sendPrint(formData) {
- this.$refs[formData].validate(valid => {
- if (valid) {
- var orgId = "";
- for (let exam of this.examList) {
- if (exam.id == this.printFrom.examId) {
- orgId = exam.rootOrgId;
- }
- }
- if (orgId != "") {
- for (let printPid of this.rowIds) {
- this.$http.get(
- QUESTION_API +
- "/sendPrint/" +
- printPid +
- "/" +
- this.printFrom.examId +
- "/" +
- orgId
- );
- }
- this.$notify({
- message: "已推送",
- type: "success"
- });
- this.resetForm2(formData);
- this.dialogModel = false;
- this.rowIds = [];
- }
- } else {
- return false;
- }
- });
- },
- //查询考试
- getExams(query) {
- query = query.trim();
- this.$http
- .get(
- EXAM_WORK_API + "/exam/queryByNameLike?name=" + query + "&enable=true"
- )
- .then(response => {
- this.examList = response.data;
- });
- },
- searchExamList() {
- //查询所有考试
- this.$http
- .get(EXAM_WORK_API + "/exam/queryByNameLike?name=&enable=true")
- .then(response => {
- var list = response.data;
- for (var i = 0; i < list.length; i++) {
- if (list[i].examType == "TRADITION") {
- this.examList.push(list[i]);
- }
- }
- });
- },
- //根据orgId查询学校名称
- searchOrgName() {
- this.$http
- .get(CORE_API + "/org/rootOrg/" + this.user.rootOrgId)
- .then(response => {
- this.Org = response.data;
- });
- },
- initVue() {
- this.isClear = this.$route.params.isClear;
- if (this.isClear == 0 || !this.isClear) {
- this.removeItem();
- this.formSearch = {
- courseNo: "",
- courseName: "",
- level: "",
- name: ""
- };
- } else {
- this.formSearch = JSON.parse(sessionStorage.getItem("gen_paper"));
- this.currentPage =
- sessionStorage.getItem("gen_paper_currentPage") == null
- ? 1
- : parseInt(sessionStorage.getItem("gen_paper_currentPage"));
- }
- this.getCourses(this.formSearch.courseName);
- this.searchGenPaper();
- }
- },
- computed: {
- paperIds() {
- var paperIds = "";
- for (let paperId of this.selectedPaperIds) {
- if (!paperIds) {
- paperIds += paperId;
- } else {
- paperIds += "," + paperId;
- }
- }
- return paperIds;
- },
- courseInfoSelect() {
- var courseList = [];
- for (let course of this.courseList) {
- var courseInfo = course.name + "(" + course.code + ")";
- var courseNo = course.code;
- var courseName = course.name;
- courseList.push({
- courseNo: courseNo,
- courseInfo: courseInfo,
- courseName: courseName
- });
- }
- return courseList;
- },
- noBatchSelected() {
- return this.selectedPaperIds.length === 0;
- },
- ...mapState({ user: state => state.user })
- },
- watch: {
- $route: "initVue"
- },
- created() {
- this.initVue();
- this.searchExamList();
- this.searchOrgName();
- }
- };
- </script>
- <style scoped src="../styles/Common.css"></style>
|