123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- import { Tag, Image, Button } from 'vant'
- import { computed, defineComponent, nextTick, onMounted, PropType, reactive } from 'vue'
- import { AnswerType, labelOptions, QuestionType } from '../../unit'
- import Draggable from 'vuedraggable'
- import styles from './index.module.less'
- import Sortable from 'sortablejs'
- import deepClone from '@/helpers/deep-clone'
- import AnserTitle from '../anser-title'
- import AnswerAnalysis from '../answer-analysis'
- // 单选和多选题
- export default defineComponent({
- name: 'choice-question',
- props: {
- value: {
- type: Array,
- default: () => []
- },
- index: {
- // 题目是第几道
- type: Number,
- default: 1
- },
- data: {
- type: Object,
- default: () => ({})
- },
- /* 只读 */
- readOnly: {
- type: Boolean,
- default: false
- },
- showAnalysis: {
- // 是否显示解析
- type: Boolean,
- default: false
- },
- analysis: {
- type: Object,
- default: () => ({
- message: '',
- topic: false, // 是否显示结果
- userResult: true // 用户答题对错
- })
- }
- },
- emits: ['update:value'],
- setup(props, { emit }) {
- const state = reactive({
- domId: 'draggableContainer' + +new Date(),
- drag: false,
- sortable: null as any,
- list: [] as any,
- options: [] as any
- })
- onMounted(() => {
- nextTick(() => {
- const el = document.getElementById(state.domId)
- state.sortable = Sortable.create(el, {
- disabled: props.readOnly,
- animation: 150,
- sort: true,
- fallbackTolerance: 3,
- onUpdate: (evt: any) => {
- const updatePosition = (list: any) =>
- list.splice(evt.newIndex, 0, list.splice(evt.oldIndex, 1)[0])
- if (state.list && state.list.length > 0) {
- updatePosition(state.list)
- } else {
- state.list = [...state.options]
- updatePosition(state.list)
- }
- onSelect()
- }
- })
- })
- })
- // 返回选中的结果
- const onSelect = () => {
- const options = state.options || []
- const list = state.list || []
- const result: any = []
- list.forEach((item: any, index: number) => {
- const rightOption = options[index]
- result.push({
- answerId: item.index,
- answer: item.leftValue,
- extra: rightOption.rightValue
- })
- })
- emit('update:value', result)
- }
- const initOptions = () => {
- const answers = props.data.answers || []
- const userAnswer = props.data.userAnswer || [] // 用户填写的答案
- if (userAnswer.length > 0) {
- userAnswer.forEach((answer: any) => {
- const rightOption = answers.find(
- (child: any) => answer.answerId === child.examinationQuestionAnswerId
- )
- const rightValue = answers.find((child: any) => answer.extra === child.questionExtra)
- const tmp = {
- index: answer.answerId, // 左边的值
- leftValue: answer.answer, // 左边的值
- rightValue: answer.extra, // 右边的值
- leftType: rightOption.questionAnswerTypeCode || 'TXT', // 左边类型
- rightType: rightOption.questionExtraTypeCode || 'TXT', // 右边类型
- rightIndex: rightValue ? rightValue.examinationQuestionAnswerId : ''
- }
- state.options.push(tmp)
- })
- } else {
- const resultValue: any = []
- answers.forEach((answer: any) => {
- const tmp = {
- index: answer.examinationQuestionAnswerId, // 左边的值
- leftValue: answer.questionAnswer, // 左边的值
- rightValue: answer.questionExtra, // 右边的值
- leftType: answer.questionAnswerTypeCode || 'TXT', // 左边类型
- rightType: answer.questionExtraTypeCode || 'TXT' // 右边类型
- }
- resultValue.push({
- answerId: answer.examinationQuestionAnswerId,
- answer: answer.questionAnswer,
- extra: answer.questionExtra
- })
- state.options.push(tmp)
- })
- // 进页面就默认初始化答案
- // emit('update:value', resultValue)
- }
- }
- onMounted(() => {
- initOptions()
- })
- return () => (
- <>
- <div class={styles.unitSubject}>
- {/* 标题 */}
- <AnserTitle
- index={props.index}
- name={props.data.name}
- score={props.data.totalScore}
- answerType={QuestionType.SORT}
- extra={{
- questionDetail: props.data.questionDetail,
- mediaUrls: props.data.mediaUrls
- }}
- />
- <div class={[styles.unitAnswers, 'van-hairline--top']}>
- <div class={styles.sortReset}>
- <span class={styles.tips}>请长按拖拽答案进行排序</span>
- <Button
- type="primary"
- round
- disabled={props.readOnly}
- onClick={() => {
- const ids: any = []
- const answers = props.data.answers || []
- answers.forEach((item: any) => {
- ids.push(item.examinationQuestionAnswerId)
- })
- state.sortable.sort(
- ids.sort((a: any, b: any) => a - b),
- true
- )
- onSelect()
- }}
- >
- 重置
- </Button>
- </div>
- <div id={state.domId}>
- {state.options.map((item: any) => (
- <>
- {item.leftType === AnswerType.TXT && (
- <Tag class={[styles.items]} data-id={item.index}>
- {item.leftValue}
- </Tag>
- )}
- {item.leftType === AnswerType.IMAGE && (
- <Image
- src={item.leftValue}
- data-id={item.index}
- class={styles.imgs}
- fit="cover"
- />
- )}
- </>
- ))}
- </div>
- </div>
- </div>
- {props.showAnalysis && (
- <div class={styles.unitSubject}>
- <AnswerAnalysis
- answerAnalysis={props.analysis.message}
- topic={props.analysis.topic}
- userResult={props.analysis.userResult}
- />
- </div>
- )}
- </>
- )
- }
- })
|