| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <template>
- <view class="bg-white rounded-5">
- <view class="px-30 pt-32 pb-20">
- <view class="text-28 text-fore-title font-bold ellipsis-2">{{ data.paperName }}</view>
- <view class="flex items-center gap-16 mt-20">
- <view class="tag-item bg-[#FFFBEB] text-[#F97316]">{{ data.subjectName }}</view>
- <view class="tag-item bg-back text-fore-light">{{ type === 0 ? '公共课' : '专业课' }}</view>
- </view>
- </view>
- <uv-line color="#F6F8FA" />
- <view class="px-30 py-20 flex items-center justify-between">
- <view class="text-24 text-fore-light">
- <text>共</text>
- <text class="text-primary">{{ data.number }}</text>
- <text>道题,总分</text>
- <text class="text-primary">{{ data.fenshu }}</text>
- <text>分</text>
- </view>
- <view class="px-20 py-8 border border-solid rounded-full text-24 text-white"
- :class="[isFinished ? 'bg-success border-success' : 'bg-primary border-primary']" @click="handleStartExam">
- <text>{{ isFinished ? '查看分析' : '开始考试' }}</text>
- </view>
- </view>
- </view>
- </template>
- <script lang="ts" setup>
- import { EnumPaperType, EnumSimulatedRecordStatus, EnumUserRole } from '@/common/enum';
- import { Study, Transfer } from '@/types';
- import { useTransferPage } from '@/hooks/useTransferPage';
- import { useAuth } from '@/hooks/useAuth';
- const { hasPermission } = useAuth();
- const { transferTo } = useTransferPage();
- const props = defineProps<{
- data: Study.VHSPaper;
- type?: number
- }>();
- const isFinished = computed(() => {
- return props.data.status === EnumSimulatedRecordStatus.SUBMIT;
- });
- const handleStartExam = () => {
- const hasAuth = hasPermission([EnumUserRole.VIP]);
- if (hasAuth) {
- if (isFinished.value) {
- transferTo('/pagesStudy/pages/simulation-analysis/simulation-analysis', {
- data: {
- examineeId: props.data.examineeId,
- paperType: EnumPaperType.SIMULATED
- }
- });
- } else {
- const pageOptions: Transfer.ExamAnalysisPageOptions = {
- paperType: EnumPaperType.SIMULATED,
- readonly: false,
- simulationInfo: {
- name: props.data.paperName,
- // 难受
- examineeId: props.data.id,
- }
- }
- transferTo('/pagesStudy/pages/exam-start/exam-start', {
- data: pageOptions,
- });
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .tag-item {
- @apply text-24 rounded-4 px-10 py-6 w-fit;
- }
- </style>
|