123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 |
- <template>
- <div class="flex direction-column full">
- <mark-header
- :exclude-operations="['remark', 'problem', 'example', 'delete', 'bookmark']"
- :paper-path="currentSystemCheckPaper?.filePath"
- @click="onOperationClick"
- >
- <template v-if="!hideHeaderButtons">
- <el-button class="m-l-base" size="small" type="primary" plain @click="onEditScore">修改给分</el-button>
- <el-button class="m-l-base m-r-auto" size="small" type="primary" @click="onSendBack">打回</el-button>
- </template>
- </mark-header>
- <div class="flex flex-1 overflow-hidden p-base mark-container">
- <div
- class="flex flex-1 direction-column radius-base fill-blank mark-content"
- :class="{ 'text-center': center }"
- :style="{ 'background-color': backgroundColor }"
- >
- <span class="preview" @click="onPreview">
- <svg-icon name="preview"></svg-icon>
- </span>
- <right-button class="next-button" @click="checkNext" />
- <div class="flex-1 p-base scroll-auto mark-content-paper">
- <img :src="dataUrl" alt="" class="paper-img" :style="{ 'background-color': frontColor }" />
- </div>
- </div>
- <div class="flex direction-column p-base radius-base fill-blank m-l-base table-view">
- <base-form size="small" :model="formModel" :items="formItems" :label-width="useVW(40)">
- <template #form-item-search>
- <el-button type="primary" @click="onSearch">查询</el-button>
- </template>
- </base-form>
- <div>
- <el-button custom-1 size="small" class="detail-info-label">
- <span class="">系统抽查卷: 共</span>
- <span class="m-l-extra-small detail-info-label-num">{{ tableData.length }}</span>
- </el-button>
- </div>
- <div class="flex-1 scroll-auto">
- <base-table
- ref="tableRef"
- size="small"
- height="100%"
- :data="tableData"
- :columns="columns"
- highlight-current-row
- @current-change="onCurrentChange"
- @row-dblclick="onDbClick"
- ></base-table>
- </div>
- </div>
- </div>
- </div>
- <image-preview v-model="previewModalVisible" :url="currentSystemCheckPaper?.filePath"></image-preview>
- <scoring-panel-with-confirm
- v-model:visible="scoringPanelVisible"
- v-model:score="modelScore"
- modal
- :toggle-modal="false"
- :main-number="currentSystemCheckPaper?.mainNumber"
- @submit="onSubmit"
- ></scoring-panel-with-confirm>
- <mark-history-list :id="currentViewHistory?.taskId" v-model="visibleHistory"></mark-history-list>
- <send-back-mark :id="currentSystemCheckPaper?.id" v-model="sendBackVisible" @rejected="onRejected"></send-back-mark>
- </template>
- <script setup lang="ts" name="SystemCheck">
- /** 系统抽查卷 */
- import { reactive, ref, computed, watch } from 'vue'
- import { ElButton } from 'element-plus'
- import { useSetImgBg } from '@/hooks/useSetImgBg'
- import useVW from '@/hooks/useVW'
- import useFetch from '@/hooks/useFetch'
- import useForm from '@/hooks/useForm'
- import useOptions from '@/hooks/useOptions'
- import useMarkHeader from '@/hooks/useMarkHeader'
- import useTableCheck from '@/hooks/useTableCheck'
- import MarkHeader from '@/components/shared/MarkHeader.vue'
- import SvgIcon from '@/components/common/SvgIcon.vue'
- import BaseForm from '@/components/element/BaseForm.vue'
- import BaseTable from '@/components/element/BaseTable.vue'
- import MarkHistoryList from '@/components/shared/MarkHistoryList.vue'
- import SendBackMark from '@/components/shared/SendBackMark.vue'
- import RightButton from '@/components/shared/RightButton.vue'
- import ScoringPanelWithConfirm from '@/components/shared/ScoringPanelWithConfirm.vue'
- import ImagePreview from '@/components/shared/ImagePreview.vue'
- import type { SetImgBgOption } from '@/hooks/useSetImgBg'
- import type { ExtractApiParams, ExtractApiResponse, ExtractMultipleApiResponse } from '@/api/api'
- import type { MarkHeaderInstance, EpFormItem, EpTableColumn } from 'global-type'
- type RowType = ExtractMultipleApiResponse<'getSystemSpotList'> & { index: number }
- const {
- rotate,
- scale,
- center,
- frontColor,
- backgroundColor,
- onBack,
- onScaleChange,
- onCenter,
- onRotate,
- setBackgroundColor,
- setFrontColor,
- onViewStandard,
- } = useMarkHeader()
- /** 给分板 */
- const scoringPanelVisible = ref<boolean>(false)
- /** 图片预览 */
- const previewModalVisible = ref<boolean>(false)
- /** 打回弹窗 */
- const sendBackVisible = ref<boolean>(false)
- const modelScore = ref<number[]>([])
- /** 刷新 */
- const onRefresh = () => {
- onSearch()
- }
- /** 预览试卷 */
- const onPreview = () => {
- previewModalVisible.value = true
- }
- /** 修改给分 */
- const onEditScore = () => {
- scoringPanelVisible.value = true
- }
- /** 打回 */
- const onSendBack = () => {
- sendBackVisible.value = true
- }
- /** 打回成功 */
- const onRejected = () => {
- onSearch()
- }
- type OperationClick = MarkHeaderInstance['onClick']
- type OperationType = Parameters<Exclude<OperationClick, undefined>>[0]['type']
- const operationHandles: Partial<Record<OperationType, (...args: any) => void>> = {
- back: onBack,
- 'scale-change': onScaleChange,
- center: onCenter,
- rotate: onRotate,
- 'front-color': setFrontColor,
- 'background-color': setBackgroundColor,
- refresh: onRefresh,
- standard: onViewStandard,
- }
- const onOperationClick: OperationClick = ({ type, value }) => {
- operationHandles[type]?.(value)
- }
- const { mainQuestionList, dataModel, changeModelValue, onOptionInit } = useOptions(['question'])
- const formModel = reactive<ExtractApiParams<'getSystemSpotList'>>({
- mainNumber: dataModel.question,
- status: 'INITIAL',
- level: '',
- pageNumber: 1,
- pageSize: 9999999,
- })
- const hideHeaderButtons = computed(() => {
- return formModel.status === 'REJECT'
- })
- watch(dataModel, () => {
- formModel.mainNumber = dataModel.question
- })
- const { defineColumn, _ } = useForm()
- const span10 = defineColumn(_, '', { span: 10 })
- const formItems = computed<EpFormItem[]>(() => [
- span10({
- rowKey: 'row-1',
- label: '大题',
- prop: 'mainNumber',
- slotType: 'select',
- slot: { options: mainQuestionList.value, onChange: changeModelValue('question'), disabled: true },
- }),
- span10({
- rowKey: 'row-1',
- label: '档次',
- labelWidth: useVW(40),
- prop: 'level',
- slotType: 'select',
- slot: {
- options: [{ label: '全部', value: '' }, ...[1, 2, 3, 4, 5].map((n) => ({ label: n, value: `LEVEL_${n}` }))],
- },
- }),
- { rowKey: 'row-1', slotName: 'search', labelWidth: '10px', colProp: { span: 4 } },
- span10({
- rowKey: 'row-2',
- label: '类型',
- prop: 'status',
- slotType: 'select',
- slot: {
- options: [
- { label: '未浏览', value: 'INITIAL' },
- { label: '已浏览', value: 'VIEWED' },
- { label: '已给分', value: 'GRADED' },
- { label: '已打回', value: 'REJECT' },
- ],
- },
- }),
- ])
- /** 系统抽查卷列表 */
- const columns: EpTableColumn[] = [
- { label: '密号', prop: 'secretNumber' },
- { label: '评卷员', prop: 'markerName' },
- { label: '评卷员给分', prop: 'markScore' },
- { label: '组长给分', prop: 'headerScore', width: 70 },
- { label: '评卷时间', prop: 'markTime', width: 45 },
- { label: '抽查次数', prop: 'checkCount', width: 45 },
- ]
- const { fetch: getSystemSpotList, result: systemSpotList } = useFetch('getSystemSpotList')
- const {
- tableRef,
- tableData,
- current: currentSystemCheckPaper,
- currentView: currentViewHistory,
- next: checkNext,
- visibleHistory,
- onDbClick,
- onCurrentChange,
- } = useTableCheck(systemSpotList)
- watch(currentSystemCheckPaper, () => {
- if (currentSystemCheckPaper.value) {
- useFetch('viewSystemSpotPaper').fetch({ id: currentSystemCheckPaper.value.id })
- }
- })
- const onSearch = async () => {
- getSystemSpotList(formModel)
- }
- /** 系统抽查卷打分 */
- const { fetch: markSystemSpotPaper } = useFetch('markSystemSpotPaper')
- const onSubmit = async () => {
- if (currentSystemCheckPaper.value) {
- await markSystemSpotPaper({ id: currentSystemCheckPaper.value.id, scores: modelScore.value })
- onSearch()
- }
- }
- onOptionInit(onSearch)
- const imgOption = computed<SetImgBgOption>(() => {
- return {
- image: currentSystemCheckPaper?.value?.filePath,
- immediate: true,
- rotate: rotate.value,
- scale: scale.value,
- }
- })
- const { drawing, dataUrl } = useSetImgBg(imgOption)
- </script>
- <style scoped lang="scss">
- .mark-container {
- .mark-content {
- position: relative;
- .preview {
- position: absolute;
- cursor: pointer;
- top: 10px;
- right: 20px;
- font-size: 24px;
- }
- .next-button {
- position: absolute;
- right: -20px;
- top: 300px;
- }
- .mark-content-paper {
- img {
- max-width: 100%;
- }
- }
- }
- .table-view {
- width: 480px;
- .detail-info-label {
- .detail-info-label-num {
- min-width: 32px;
- height: 24px;
- line-height: 24px;
- background: #00987b;
- border-radius: 4px;
- }
- }
- }
- }
- </style>
|