123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777 |
- <template>
- <div>
- <section class="content">
- <div class="box box-info">
- <div class="box-body">
- <el-form
- ref="formSearch"
- :inline="true"
- :model="formSearch"
- label-width="70px"
- >
- <el-form-item label="评卷名称" prop="workId">
- <el-select
- v-model="formSearch.workId"
- clearable
- filterable
- :remote-method="getMarkWorks"
- remote
- class="input"
- placeholder="请选择"
- style="width: 150px"
- @change="changeMarkWork"
- @clear="resetForm"
- >
- <el-option
- v-for="item in markWorkSelect"
- :key="item.workId"
- :label="item.markName"
- :value="item.workId"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="学习中心" prop="orgCode">
- <el-select
- v-model="formSearch.orgCode"
- :remote-method="getOrgs"
- remote
- :loading="getOrgsSearchLoading"
- class="input"
- clearable
- placeholder="请选择"
- filterable
- style="width: 150px"
- @focus="(e) => getOrgs(e.target.value)"
- >
- <el-option
- v-for="item in orgList"
- :key="item.code"
- :label="item.name"
- :value="item.code"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="姓名" prop="studentName">
- <el-input
- v-model="formSearch.studentName"
- placeholder="请输入姓名"
- style="width: 150px"
- ></el-input>
- </el-form-item>
- <el-form-item label="学号" prop="studentCode">
- <el-input
- v-model="formSearch.studentCode"
- placeholder="请输入学号"
- style="width: 150px"
- ></el-input>
- </el-form-item>
- <el-form-item label="标记卷" prop="tag">
- <el-select
- v-model="formSearch.tag"
- clearable
- placeholder="请选择"
- filterable
- style="width: 150px"
- >
- <el-option
- v-for="item in tags"
- :key="item.code"
- :label="item.name"
- :value="item.code"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="课程" prop="courseCode">
- <el-select
- v-model="formSearch.courseCode"
- clearable
- filterable
- class="input"
- placeholder="请选择"
- style="width: 150px"
- >
- <el-option
- v-for="item in courseAllListSelect"
- :key="item.code"
- :label="item.courseInfo"
- :value="item.code"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="评委" prop="userId">
- <el-select
- v-model="formSearch.userId"
- clearable
- filterable
- class="input"
- placeholder="请选择"
- style="width: 150px"
- >
- <el-option
- v-for="item in userList"
- :key="item.userId"
- :label="item.name"
- :value="item.userId"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="评卷备注" prop="markRemark">
- <el-input
- v-model="formSearch.markRemark"
- placeholder="请输入备注"
- style="width: 150px"
- ></el-input>
- </el-form-item>
- <el-form-item label="试卷ID" prop="examRecordDataId">
- <el-input
- v-model="formSearch.examRecordDataId"
- placeholder="请输入试卷ID"
- style="width: 150px"
- maxlength="18"
- ></el-input>
- </el-form-item>
- <el-form-item label="身份证号" prop="identityNumber">
- <el-input
- v-model="formSearch.identityNumber"
- placeholder="请输入身份证号"
- style="width: 150px"
- ></el-input>
- </el-form-item>
- <div></div>
- <el-form-item>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-search"
- @click="searchMarkPaperCheck"
- >查询</el-button
- >
- <el-button
- size="small"
- icon="el-icon-refresh"
- @click="resetForm()"
- >重置</el-button
- >
- </el-form-item>
- </el-form>
- <div class="block-seperator"></div>
- <span>操作:</span>
- <el-button
- type="danger"
- icon="el-icon-arrow-left"
- size="mini"
- :disabled="noBatchSelected"
- @click="bachBackRefresh"
- >打回
- </el-button>
- <el-button
- type="primary"
- size="mini"
- icon="el-icon-download"
- @click="exportData"
- >导出</el-button
- >
- <div style="width: 100%; margin-bottom: 10px"></div>
- <!-- 页面列表 -->
- <el-table
- v-loading="loading"
- stripe
- element-loading-text="拼命加载中"
- :data="tableData"
- border
- style="width: 100%"
- @selection-change="selectChange"
- >
- <el-table-column type="selection" width="50"></el-table-column>
- <el-table-column
- label="试卷ID"
- width="150"
- prop="examRecordDataId"
- />
- <el-table-column
- label="身份证号"
- width="150"
- prop="identityNumber"
- />
- <el-table-column label="学习中心" width="150" prop="orgName" />
- <el-table-column
- label="学号"
- width="120"
- prop="studentCode"
- sortable
- />
- <el-table-column label="姓名" width="120" prop="studentName" />
- <el-table-column
- label="课程代码"
- width="120"
- prop="courseCode"
- sortable
- />
- <el-table-column label="课程" width="120" prop="courseName" />
- <el-table-column label="试卷名称" width="120" prop="paperType" />
- <el-table-column label="评卷员" width="120" prop="userName" />
- <el-table-column label="主观总分" width="120" prop="score" />
- <el-table-column
- label="客观总分"
- width="120"
- prop="objectiveScore"
- sortable
- />
- <el-table-column
- label="卷面总分"
- width="120"
- prop="totalScore"
- sortable
- />
- <el-table-column label="标记卷" width="120">
- <template slot-scope="scope">
- <div>
- <span>{{ scope.row.tag | tagFilter }}</span>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="评卷备注" width="120">
- <template slot-scope="scope">
- <el-popover trigger="hover" name="text" placement="top">
- <div style="width: 200px">{{ scope.row.markRemark }}</div>
- <div slot="reference" class="interceptStr">
- <span>{{ scope.row.markRemark }}</span>
- </div>
- </el-popover>
- </template>
- </el-table-column>
- <el-table-column fixed="right" label="操作" width="180">
- <template slot-scope="scope">
- <el-button
- type="primary"
- size="mini"
- icon="el-icon-view"
- plain
- @click="viewPaper(scope.row)"
- >原卷</el-button
- >
- <el-button
- type="danger"
- icon="el-icon-arrow-left"
- size="mini"
- @click="backRefresh(scope.row)"
- >打回</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <div class="page pull-right">
- <el-pagination
- v-if="paginationShow"
- :current-page="currentPage"
- :page-size="pageSize"
- :page-sizes="[10, 20, 50, 100, 200, 300]"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- @current-change="handleCurrentChange"
- @size-change="handleSizeChange"
- ></el-pagination>
- </div>
- </div>
- </div>
- </section>
- <el-dialog
- title="预览"
- width="400px"
- :visible.sync="imageDialog"
- @close="closeImageDialog"
- >
- <div
- style="text-align: center; width: 90%; height: 90%"
- v-html="imgHtml"
- ></div>
- </el-dialog>
- </div>
- </template>
- <script>
- import { mapState } from "vuex";
- import {
- CORE_API,
- MARKING_API,
- MARKING_LOGIC_API,
- } from "@/constants/constants";
- import "viewerjs/dist/viewer.css";
- import Viewer from "viewerjs";
- export default {
- data() {
- return {
- selectedIds: [],
- formSearch: {
- orgCode: "",
- studentName: "",
- studentCode: "",
- tag: "",
- courseCode: "",
- userId: "",
- workId: "",
- markRemark: "",
- examRecordDataId: "",
- identityNumber: "",
- },
- orgList: [],
- courseList: [],
- specialtyList: [],
- userList: [],
- tableData: [],
- currentPage: 1,
- pageSize: 10,
- total: 0,
- paginationShow: false,
- tags: [],
- loading: false,
- getOrgsSearchLoading: false,
- markWorkList: [],
- imgHtml: "",
- imageDialog: false,
- };
- },
- computed: {
- ...mapState({ user: (state) => state.user }),
- markWorkSelect() {
- let markWorkNames = [];
- for (let markWork of this.markWorkList) {
- markWorkNames.push({
- workId: markWork.id,
- markName: markWork.name,
- });
- }
- return markWorkNames;
- },
- courseAllListSelect() {
- let courseSelect = [];
- for (let course of this.courseList) {
- let courseInfo = course.name + "(" + course.code + ")";
- courseSelect.push({ code: course.code, courseInfo: courseInfo });
- }
- return courseSelect;
- },
- noBatchSelected() {
- return this.selectedIds.length === 0;
- },
- },
- created() {
- //查询标记卷
- this.getTags();
- this.getMarkWorks();
- this.operaQuery();
- },
- mounted() {
- window.viewPicture = this.viewPicture;
- },
- methods: {
- exportData() {
- if (!this.formSearch.workId) {
- this.$notify({
- title: "警告",
- message: "请选择评卷工作",
- type: "warning",
- duration: 1000,
- });
- return false;
- }
- let regx = /^\d*$/;
- if (!regx.test(this.formSearch.examRecordDataId)) {
- this.$notify({
- title: "警告",
- message: "试卷ID只能输入数字",
- type: "warning",
- });
- return false;
- }
- this.$confirm("确定执行导出?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }).then(() => {
- this.$http
- .get(MARKING_API + "/export/task/paper_check", {
- params: {
- query: this.formSearch,
- },
- })
- .then(() => {
- this.$notify({
- type: "success",
- message: "正在后台导出中,请稍后到“导出任务列表”中下载!",
- });
- })
- .catch((error) => {
- this.$notify({
- type: "error",
- message: error.response.data.desc,
- });
- });
- });
- },
- selectChange(rows) {
- this.selectedIds = [];
- rows.forEach((element) => {
- this.selectedIds.push(element.id);
- });
- },
- viewPicture(imagesClass, index) {
- const viewer = new Viewer(document.querySelector(imagesClass), {
- container: "#app",
- zIndex: 99999,
- title: false,
- toolbar: {
- zoomIn: 1,
- zoomOut: 1,
- oneToOne: 1,
- reset: 1,
- prev: 1,
- play: {
- show: 0,
- size: "large",
- },
- next: 1,
- rotateLeft: 1,
- rotateRight: 1,
- flipHorizontal: 1,
- flipVertical: 1,
- },
- ready() {
- viewer.view(index);
- },
- hidden() {
- viewer.destroy();
- },
- });
- viewer.show();
- },
- changeMarkWork() {
- if (this.$route.query) {
- this.$router.push({ path: "/marking/mark_paper_check" });
- }
- this.getCourses();
- this.getUserList();
- this.formSearch = Object.assign(this.formSearch, {
- orgCode: "",
- studentName: "",
- studentCode: "",
- tag: "",
- courseCode: "",
- userId: "",
- markRemark: "",
- examRecordDataId: "",
- identityNumber: "",
- });
- },
- getMarkWorks(name = "") {
- this.$http
- .get(MARKING_LOGIC_API + "/markWorks?status=1" + `&name=${name}`)
- .then((response) => {
- this.markWorkList = response.data?.content || [];
- if (this.$route.query && this.$route.query.workId) {
- this.formSearch.workId = parseInt(this.$route.query.workId);
- }
- });
- },
- //查询学习中心
- getOrgs(name) {
- this.getOrgsSearchLoading = true;
- this.$http.get(CORE_API + "/org/query?name=" + name).then((response) => {
- this.getOrgsSearchLoading = false;
- this.orgList = response.data;
- });
- },
- //查询课程
- getCourses() {
- this.$http
- .get(
- MARKING_API +
- "/markResults/queryExamCourseList?workId=" +
- this.formSearch.workId
- )
- .then((response) => {
- this.courseList = response.data;
- if (this.$route.query && this.$route.query.courseCode) {
- this.formSearch.courseCode = this.$route.query.courseCode;
- }
- });
- },
- //查询评委
- getUserList() {
- if (!this.formSearch.workId) {
- this.userList = [];
- return;
- }
- this.$http
- .get(
- MARKING_LOGIC_API +
- "/markUsers/assign?workId=" +
- this.formSearch.workId +
- "&courseCode="
- )
- .then((response) => {
- this.userList = response.data;
- if (this.$route.query && this.$route.query.userId) {
- this.formSearch.userId = parseInt(this.$route.query.userId);
- }
- });
- },
- //查询标记卷
- getTags() {
- this.$http.get(MARKING_API + "/markResults/tag").then((response) => {
- this.tags = response.data;
- //移除科目错误
- for (let i = 0; i < this.tags.length; i++) {
- if (this.tags[i].code === "SUBJECT_ERROR") {
- this.tags.splice(i, 1);
- }
- }
- });
- },
- //查询专业
- getSpecialtys() {
- var orgId = this.user.rootOrgId;
- this.$http
- .get(CORE_API + "/specialty/all?orgId=" + orgId)
- .then((response) => {
- this.specialtyList = response.data;
- });
- },
- //查询方法
- searchMarkPaperCheck() {
- this.currentPage = 1;
- this.initMarkPaperCheck();
- },
- initMarkPaperCheck() {
- if (!this.formSearch.workId) {
- this.$notify({
- title: "警告",
- message: "请选择评卷名称",
- type: "warning",
- });
- return false;
- }
- let regx = /^\d*$/;
- if (!regx.test(this.formSearch.examRecordDataId)) {
- this.$notify({
- title: "警告",
- message: "试卷ID只能输入数字",
- type: "warning",
- });
- return false;
- }
- this.loading = true;
- var url =
- MARKING_LOGIC_API +
- "/markResults/all/" +
- (this.currentPage - 1) +
- "/" +
- this.pageSize;
- this.$http.get(url, { params: this.formSearch }).then((response) => {
- this.tableData = response.data.list;
- this.total = response.data.total;
- this.loading = false;
- this.$router.push({
- path: "/marking/mark_paper_check",
- query: {
- workId: this.formSearch.workId,
- orgCode: this.formSearch.orgCode,
- studentName: this.formSearch.studentName,
- studentCode: this.formSearch.studentCode,
- tag: this.formSearch.tag,
- courseCode: this.formSearch.courseCode,
- userId: this.formSearch.userId,
- markRemark: this.formSearch.markRemark,
- currentPage: this.currentPage,
- pageSize: this.pageSize,
- examRecordDataId: this.formSearch.examRecordDataId,
- identityNumber: this.formSearch.identityNumber,
- },
- });
- this.$nextTick(function () {
- this.paginationShow = true;
- });
- });
- },
- resetForm() {
- this.formSearch = Object.assign(this.formSearch, {
- orgCode: "",
- studentName: "",
- studentCode: "",
- tag: "",
- courseCode: "",
- userId: "",
- workId: "",
- markRemark: "",
- examRecordDataId: "",
- identityNumber: "",
- });
- this.tableData = [];
- this.total = 0;
- this.$router.push({ path: "/marking/mark_paper_check" });
- },
- handleCurrentChange(val) {
- this.currentPage = val;
- this.initMarkPaperCheck();
- },
- handleSizeChange(val) {
- this.pageSize = val;
- this.currentPage = 1;
- this.initMarkPaperCheck();
- },
- //查看原卷
- viewPaper(row) {
- if (row.examType == "OFFLINE") {
- let url = row.studentSubjectiveHtml;
- if (/(.*)\.(jpg|gif|jpeg|png)$/.test(url)) {
- this.imgHtml = this.parseImgs(url);
- this.imageDialog = true;
- } else {
- window.open(url);
- }
- } else {
- let studentPaperId = row.studentPaper.id;
- let url =
- "/marking/view_paper/" +
- this.formSearch.workId +
- "/" +
- studentPaperId;
- this.$router.push({
- path: url,
- });
- }
- },
- closeImageDialog() {
- this.imageDialog = false;
- this.imgHtml = "";
- },
- parseImgs(urls) {
- let uuid = this.generateUUID();
- let group1 = [];
- let group2 = [];
- let elements = urls.split(",");
- for (let n = 0; n < elements.length; n++) {
- let url = elements[n];
- group1.push(
- "<a onclick=\"window.viewPicture('#pic-" +
- uuid +
- "','" +
- n +
- '\')" target="_blank"><img class="photo-answer" src="' +
- url +
- '?x-oss-process=image/resize,m_lfit,h_200,w_200"/></a>'
- );
- if ((n + 1) % 3 == 0) {
- group1.push("</br>");
- }
- group2.push('<img src="' + url + '"/>');
- }
- let html =
- '<div class="photo-answers-block">' +
- group1.join("") +
- '</div><div id="pic-' +
- uuid +
- '" style="display:none">' +
- group2.join("") +
- "</div>";
- return html;
- },
- generateUUID() {
- let date = new Date().getTime();
- return "xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx".replace(/[xy]/g, function (c) {
- let r = (date + Math.random() * 16) % 16 | 0;
- date = Math.floor(date / 16);
- return (c == "x" ? r : (r & 0x3) | 0x8).toString(16);
- });
- },
- //批量打回
- bachBackRefresh() {
- this.$confirm("确定打回?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- var url = MARKING_API + "/markResults/reject";
- this.$http.post(url, this.selectedIds).then(() => {
- this.searchMarkPaperCheck();
- });
- })
- .catch(() => {
- /*ignore*/
- });
- },
- //打回
- backRefresh(row) {
- this.$confirm("确定打回?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- var url = MARKING_API + "/markResults/reject";
- var markResultIds = [row.id];
- this.$http.post(url, markResultIds).then(() => {
- this.searchMarkPaperCheck();
- });
- })
- .catch(() => {
- /*ignore*/
- });
- },
- operaQuery() {
- let formData = this.$route.query;
- if (formData && formData.workId) {
- this.formSearch.workId = formData.workId;
- this.formSearch.orgCode = formData.orgCode;
- this.formSearch.studentName = formData.studentName;
- this.formSearch.studentCode = formData.studentCode;
- this.formSearch.markRemark = formData.markRemark;
- this.formSearch.courseCode = formData.courseCode;
- this.formSearch.userId = formData.userId;
- this.formSearch.tag = formData.tag;
- this.formSearch.examRecordDataId = formData.examRecordDataId;
- this.formSearch.identityNumber = formData.identityNumber;
- this.currentPage = parseInt(formData.currentPage);
- this.pageSize = parseInt(formData.pageSize);
- this.getCourses();
- this.getUserList();
- this.initMarkPaperCheck();
- }
- },
- },
- };
- </script>
- <style lang="css" scoped>
- .interceptStr {
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
- </style>
- <style>
- img.photo-answer {
- width: 100px;
- padding: 10px;
- height: 100px;
- }
- .photo-answers-block {
- width: 350px !important;
- }
- .photo-answers-block a {
- cursor: pointer;
- }
- </style>
|