import { Button, Grid, GridItem, Icon, Tag } from 'vant' import { defineComponent } from 'vue' import styles from './index.module.less' import iconBell from '@/views/unit-test/images/icon-bell.png' import iconTimer from '@/views/unit-test/images/icon-timer.png' import { courseEmnu } from '@/constant' export default defineComponent({ name: 'notice-start', props: { data: { type: Object, default: () => {} } }, emits: ['close', 'confirm'], setup(props, { emit }) { return () => (
测验须知
{props.data.name} {courseEmnu[props.data.courseTypeCode]}

{props.data.totalScore}

总分

{props.data.passScore}

合格分

{props.data.questionNum}

题目数量

测验时长:{props.data.timeMinutes}分钟
温馨提示:

1、单元测验仅可进行一次,请通过练习模式充分练习后再进行测试,以保障测验分数准确;
2、点击开始测验后开始测验计时,到达测验时长后自动完成;
3、开始测验后若中途退出,时长依然计算;
4、准备好后开始测验吧!

) } })