123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- <template>
- <div class="banked-cloze-question nested-question">
- <el-form
- ref="modalFormComp"
- :model="modalForm"
- :rules="rules"
- label-width="100px"
- >
- <el-form-item prop="quesBody" label="大题题干">
- <v-editor
- v-model="modalForm.quesBody"
- :enable-answer-point="IS_BANKED_CLOZE"
- @answer-point-changed="answerPointsChange"
- @change="quesBodyChange"
- ></v-editor>
- </el-form-item>
- <el-form-item
- v-for="(option, oindex) in modalForm.quesOptions"
- :key="option.nmuber"
- :prop="`quesOptions.${oindex}.optionBody`"
- :rules="optionRule"
- >
- <div class="question-edit-option">
- <div class="option-check">
- {{ (option.number - 1) | optionOrderWordFilter }}
- </div>
- <div class="option-body">
- <v-editor
- v-model="option.optionBody"
- @change="() => optionBodyChange(oindex)"
- ></v-editor>
- </div>
- <div class="option-delete">
- <el-button
- size="mini"
- circle
- type="primary"
- icon="el-icon-plus"
- title="新增"
- @click.prevent="addQuesOption(oindex)"
- ></el-button>
- <el-button
- size="mini"
- circle
- type="danger"
- icon="el-icon-delete"
- title="删除"
- :disabled="deleleOptionDisabled"
- @click.prevent="removeQuesOption(oindex)"
- ></el-button>
- </div>
- </div>
- </el-form-item>
- <el-form-item label="答题模式">
- <el-select v-model="modalForm.quesParam.matchingMode">
- <el-option
- v-for="item in matchingModes"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-form>
- <el-collapse v-model="activeNames">
- <el-collapse-item
- v-for="(subq, index) in modalForm.subQuestions"
- :key="subq.questionKey"
- :name="subq.questionKey"
- >
- <div slot="title" class="subq-header">
- <h3>第{{ index + 1 }}小题</h3>
- <div>
- <el-button
- v-if="!IS_BANKED_CLOZE"
- class="btn-danger"
- size="mini"
- type="text"
- icon="el-icon-delete"
- title="删除"
- @click.stop="removeSubQuestion(index)"
- ></el-button>
- </div>
- </div>
- <match-question
- ref="MatchQuestion"
- :question="subq"
- :parent-question="modalForm"
- ></match-question>
- </el-collapse-item>
- </el-collapse>
- <el-button
- v-if="!IS_BANKED_CLOZE"
- type="primary"
- size="small"
- icon="el-icon-circle-plus-outline"
- @click="addSubQuestion()"
- >新增小题</el-button
- >
- </div>
- </template>
- <script>
- import { isAnEmptyRichText } from "@/utils/utils";
- import { randomCode } from "@/plugins/utils";
- import {
- getInitQuestionModel,
- getMatchQuestionModel,
- } from "../model/questionModel";
- import MatchQuestion from "./MatchQuestion.vue";
- export default {
- name: "BankedClozeQuestion",
- components: { MatchQuestion },
- props: {
- question: {
- type: Object,
- default() {
- return {};
- },
- },
- },
- data() {
- return {
- modalForm: {},
- activeNames: [],
- rules: {
- quesBody: [
- {
- validator: (rule, value, callback) => {
- if (!this.IS_BANKED_CLOZE) return callback();
- if (!value || isAnEmptyRichText(value)) {
- return callback(new Error(`请输入题干`));
- }
- callback();
- },
- trigger: "change",
- },
- ],
- },
- optionRule: {
- validator: (rule, value, callback) => {
- if (!value || isAnEmptyRichText(value)) {
- return callback(new Error(`请输入选项内容`));
- }
- callback();
- },
- trigger: "change",
- },
- matchingModes: [
- { label: "单用", value: 1 },
- { label: "复用", value: 2 },
- ],
- };
- },
- computed: {
- IS_BANKED_CLOZE() {
- return this.modalForm.questionType === "BANKED_CLOZE";
- },
- deleleOptionDisabled() {
- return this.modalForm.quesOptions.length === 1;
- },
- },
- created() {
- this.initData();
- },
- methods: {
- initData() {
- this.modalForm = this.$objAssign(
- getInitQuestionModel("PARAGRAPH_MATCHING"),
- this.question
- );
- },
- optionBodyChange(oindex) {
- this.$refs.modalFormComp.validateField(
- `quesOptions.${oindex}.optionBody`,
- () => {}
- );
- },
- addQuesOption(index) {
- if (this.modalForm.quesOptions.length >= 20) {
- this.$message.error("选项最多20个");
- return;
- }
- this.modalForm.quesOptions.splice(index + 1, 0, {
- number: 0,
- body: { sections: [] },
- });
- this.resetNumberAndSaveOptions();
- },
- removeQuesOption(index) {
- if (this.deleleOptionDisabled) return;
- this.modalForm.quesOptions.splice(index, 1);
- this.resetNumberAndSaveOptions();
- this.$nextTick(() => {
- for (let i = 0; i < this.$refs.MatchQuestion.length; i++) {
- this.$refs.MatchQuestion[i].optionChange();
- }
- });
- },
- resetNumberAndSaveOptions() {
- this.modalForm.quesOptions.forEach((option, index) => {
- option.number = index + 1;
- });
- },
- addSubQuestion(index = null) {
- let newQuestion = getMatchQuestionModel();
- newQuestion.questionKey = randomCode();
- newQuestion.courseId = this.question.courseId;
- const nindex =
- index === null ? this.modalForm.subQuestions.length : index + 1;
- this.modalForm.subQuestions.splice(nindex, 0, newQuestion);
- if (!this.activeNames.includes(newQuestion.questionKey))
- this.activeNames.push(newQuestion.questionKey);
- },
- async removeSubQuestion(index) {
- if (this.IS_BANKED_CLOZE) return;
- const res = await this.$confirm("确定要删除该小题吗?", "提示", {
- type: "warning",
- }).catch(() => {});
- if (res !== "confirm") return;
- const delQuestionKey = this.modalForm.subQuestions[index].questionKey;
- this.activeNames = this.activeNames.filter((k) => k !== delQuestionKey);
- this.modalForm.subQuestions.splice(index, 1);
- },
- answerPointsChange(answerPointsChanged) {
- let subQuestions = [];
- answerPointsChanged.forEach((item) => {
- const order = Number(item);
- if (order === 0) {
- let newQuestion = getMatchQuestionModel();
- newQuestion.questionKey = randomCode();
- newQuestion.courseId = this.question.courseId;
- subQuestions.push(newQuestion);
- } else {
- subQuestions.push(this.modalForm.subQuestions[order - 1]);
- }
- });
- this.modalForm.subQuestions = subQuestions;
- this.activeNames = subQuestions.map((item) => item.questionKey);
- },
- quesBodyChange() {
- this.$refs.modalFormComp.validateField(`quesBody`, () => {});
- },
- async validate() {
- const valid = await this.$refs.modalFormComp.validate().catch(() => {});
- if (!valid) return;
- let errorQuestionIndexs = [];
- for (let i = 0; i < this.$refs.MatchQuestion.length; i++) {
- const compInst = this.$refs.MatchQuestion[i];
- const res = await compInst.validate().catch(() => {});
- if (!res) {
- errorQuestionIndexs.push(i + 1);
- }
- }
- if (errorQuestionIndexs.length) {
- this.$message.error(
- `请完成第${errorQuestionIndexs.join()}小题的编辑!`
- );
- return Promise.reject();
- }
- return true;
- },
- getData() {
- this.modalForm.subQuestions = this.$refs.MatchQuestion.map((compInst) =>
- compInst.getData()
- );
- return this.modalForm;
- },
- },
- };
- </script>
|