rt-sim-training-client/src/views/competitionManage/bankList/item-answer.vue

109 lines
3.2 KiB
Vue
Raw Normal View History

2020-05-26 15:59:11 +08:00
<template>
<div>
<template v-if="type=='select'">
<el-radio-group v-model="active" @change="onChange">
<el-radio v-for="(el,i) in optionList" :key="i" :label="i"> 选项-{{ $asc2chart(65+i) }} </el-radio>
</el-radio-group>
</template>
<template v-if="type=='judge'">
<el-radio-group v-model="active" @change="onChange">
<el-radio :label="0"> </el-radio>
<el-radio :label="1"> × </el-radio>
</el-radio-group>
</template>
<template v-if="type=='multi'">
<el-checkbox-group v-model="activeList" @change="onChange">
<el-checkbox v-for="(el,i) in optionList" :key="i" :label="i"> 选项-{{ $asc2chart(65+i) }} </el-checkbox>
</el-checkbox-group>
</template>
<template v-if="type==='fill'">
<div v-for="(el, i) in answerList" :key="i" style="margin-bottom: 5px;">
<div>{{ `${i + 1}` }}</div>
<item-rich v-model="el.value" :remove="i>0" @modify="doModify(el)" @remove="doRemove(i)" />
</div>
<el-button class="item__button" type="primary" size="mini" icon="el-icon-plus" @click="doAppend" />
</template>
<template v-if="type==='answer'">
<el-input
v-model="answer"
type="textarea"
:autosize="{ minRows: 2, maxRows: 4}"
placeholder="请输入答案"
@change="onChange"
/>
</template>
2020-05-26 15:59:11 +08:00
</div>
</template>
<script>
import ItemRich from './item-rich';
2020-05-26 15:59:11 +08:00
export default {
components: {
ItemRich
},
2020-05-26 15:59:11 +08:00
props: {
optionList: {
type: Array,
required: true
},
type: {
type: String,
required: true
}
},
data() {
return {
active: 0,
activeList: [],
answer: '',
answerList: [{value: ''}]
2020-05-26 15:59:11 +08:00
};
},
watch: {
optionList(val) {
if (this.type === 'judge' || this.type === 'select') {
this.active = this.optionList.findIndex(ele => ele.correct);
} else if (this.type === 'multi') {
this.activeList = [];
this.optionList.forEach((el, i) => {
if (el.correct) {
this.activeList.push(i);
}
});
} else if (this.type === 'fill') {
this.answerList = [];
this.optionList.forEach(el => {
this.answerList.push({value: el.content});
});
} else if (this.type === 'answer') {
this.answer = (this.optionList[0] || {content: ''}).content;
}
2020-05-26 15:59:11 +08:00
}
2020-10-22 09:45:33 +08:00
// answerList: {
// handler(val) {
// this.onChange(val);
// },
// deep: true
// }
2020-05-26 15:59:11 +08:00
},
methods: {
onChange(e) {
this.$emit('change', e);
},
doAppend() {
this.answerList.push({value: ''});
},
doModify(el) {
this.$emit('modify', {model: el, prop: 'value'});
2020-10-22 09:45:33 +08:00
console.log('-----------', this.answerList);
},
doRemove(index) {
this.answerList.splice(index, 1);
2020-05-26 15:59:11 +08:00
}
}
};
</script>
<style lang="scss" scoped>
</style>