AddQuestion.vue 10.9 KB
Newer Older
纪泽龙's avatar
纪泽龙 committed
1 2 3 4 5 6 7
<template>
  <div ref="myBody" class="add-question flex">
    <div class="text flex">
      <div class="left">
        目前录入题目是第<span>{{ questionNextNum }}</span
        >道题
      </div>
8 9 10 11 12 13 14 15 16 17 18 19

      <div>
        <el-radio-group
          v-model="form.topicType"
          size="mini"
          @input="topicTypeChange"
        >
          <el-radio-button :label="1">单选</el-radio-button>
          <el-radio-button :label="2">多选</el-radio-button>
          <el-radio-button :label="3">判断</el-radio-button>
        </el-radio-group>
      </div>
纪泽龙's avatar
纪泽龙 committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
      <div class="right">{{ courseName }}</div>
    </div>

    <el-form class="form flex" ref="form" :model="form" label-width="auto">
      <!-- <div class="top flex"> -->
      <div>
        <el-form-item
          label="题目内容"
          prop="topicTitle"
          :rules="{
            required: true,
            message: '必须输入题目内容',
            trigger: 'blur',
          }"
        >
          <el-input
            type="textarea"
            placeholder="多行输入"
            resize="none"
            rows="4"
            v-model="form.topicTitle"
          >
          </el-input>
        </el-form-item>
      </div>

      <div class="bottom">
        <!-- <el-form-item label="选项1" prop="title">
          <el-input v-model="form.title" placeholder="请输入"></el-input>
        </el-form-item> -->
        <el-form-item
          v-for="(question, index) in form.questions"
          :label="'选项' + (index + 1)"
          :key="question.key"
          :prop="'questions.' + index + '.value'"
          :rules="
            index === 0
              ? {
                  required: true,
                  message: '第一项不能为空不能为空',
                  trigger: 'blur',
                }
              : {}
          "
        >
          <div class="add-select flex">
            <el-input
              type="textarea"
              placeholder="多行输入"
              style="flex: 1; margin-right: 10px"
              rows="2"
              v-model="question.value"
            ></el-input>
            <div class="flex algin-items">
              <div
                @click="rightAnswerClick(index)"
                class="right"
77
                :class="{ active: answerNum.indexOf(index) >= 0 }"
纪泽龙's avatar
纪泽龙 committed
78 79 80 81 82 83
              >
                设为正确答案
              </div>
              <el-button
                size="mini"
                type="danger"
84
                v-if="index > 0 && form.topicType != 3"
纪泽龙's avatar
纪泽龙 committed
85 86 87 88 89 90 91
                @click.prevent="removeDomain(question)"
                >删除</el-button
              >
            </div>
          </div>
        </el-form-item>

92
        <!-- <el-form-item
纪泽龙's avatar
纪泽龙 committed
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
          class="noAttr"
          :label="`选项${form.questions.length + 1}`"
          prop=""
        >
          <div class="add-select flex">
            <el-input
              type="textarea"
              placeholder="多行输入"
              resize="none"
              rows="2"
              v-model="addValue"
              style="flex: 1; margin-right: 10px"
            >
            </el-input>
            <div class="flex algin-items">
              <div
                @click="rightAnswerClick(form.questions.length)"
                class="right"
                :class="{ active: answerNum === form.questions.length }"
              >
                设为正确答案
114 115 116 117 118 119 120
              </div> -->
        <div style="padding-left: 30px" v-if="form.topicType != 3">
          <el-button size="mini" type="primary" @click.prevent="add(addValue)"
            >新增选项</el-button
          >
        </div>
        <!-- </div>
纪泽龙's avatar
纪泽龙 committed
121
          </div>
122
        </el-form-item> -->
纪泽龙's avatar
纪泽龙 committed
123 124 125 126 127 128
      </div>
    </el-form>
  </div>
</template>

<script>
129 130 131 132 133 134 135
// import {
//   addQuestion,
//   checkQuestion,
//   changeQuestion,
//   getQuestion,
//   getLessonById,
// } from "@/api/educationPlanExam/lessonsProgram.js";
纪泽龙's avatar
纪泽龙 committed
136 137 138 139 140 141
import {
  addSubject,
  getSubject,
  listSubject,
  updateSubject,
} from "@/api/educationPlanExam/subject";
纪泽龙's avatar
纪泽龙 committed
142 143 144 145 146 147 148 149

export default {
  name: "AnswerLesson",
  props: {
    // visible: {
    //   type: Boolean,
    //   default: false,
    // },
150
    bankId: {
纪泽龙's avatar
纪泽龙 committed
151 152
      type: Number,
    },
153
    subjectId: {
纪泽龙's avatar
纪泽龙 committed
154 155 156 157 158 159 160
      type: Number,
    },
  },
  components: {},
  data() {
    return {
      form: {
161
        topicType: 1,
纪泽龙's avatar
纪泽龙 committed
162
        topicTitle: "",
163
        questions: [{ value: "" }, { value: "" }],
纪泽龙's avatar
纪泽龙 committed
164
      },
165
      answerNum: [],
纪泽龙's avatar
纪泽龙 committed
166 167 168 169 170 171 172 173 174
      addValue: "",
      // 录入的是第几道题
      questionNextNum: 1,
      courseName: "",
    };
  },

  created() {
    // 如果存在就是修改
175 176
    if (this.subjectId) {
      getSubject(this.subjectId).then((res) => {
纪泽龙's avatar
纪泽龙 committed
177
        console.log("?", res.data);
纪泽龙's avatar
纪泽龙 committed
178 179
        const data = res.data;
        this.form = {
180
          topicType: data.topicType,
纪泽龙's avatar
纪泽龙 committed
181 182 183
          topicTitle: data.topicTitle,
          questions: JSON.parse(data.topicOption),
        };
184 185
        // this.answerNum = data.answer;
        this.answerNum = JSON.parse(data.answer);
纪泽龙's avatar
纪泽龙 committed
186 187 188 189 190 191
      });
    }

    // 查询是第几道题
    this.getQuestion();
    // 获取课程标题
192
    // this.getLessonById(this.bankId);
纪泽龙's avatar
纪泽龙 committed
193 194
  },
  methods: {
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
    // 题目类型变化
    topicTypeChange(num) {
      if (num == 1) {
        this.answerNum = [];
      } else if (num == 2) {
        this.answerNum = [];
        // this.form.questions=[{ value: "" }, { value: "" }];
      } else {
        this.answerNum = [];
        const form = {
          topicType: 3,
          topicTitle: this.form.topicTitle,
          questions: [{ value: "对" }, { value: "错" }],
        };
        this.form = form;
      }
    },
纪泽龙's avatar
纪泽龙 committed
212
    getQuestion() {
213
      listSubject({ bankId: this.bankId }).then((res) => {
纪泽龙's avatar
纪泽龙 committed
214 215
        console.log(res);
        // 如果是修改 就是原来的值,如果不是,就是总数+1
216
        if (this.subjectId) {
217
          res.rows.forEach((item, index) => {
218
            if (item.subjectId == this.subjectId) {
纪泽龙's avatar
纪泽龙 committed
219
              this.questionNextNum = index + 1;
220 221 222 223 224
            }
          });
        } else {
          this.questionNextNum = res.total + 1;
        }
纪泽龙's avatar
纪泽龙 committed
225 226
      });
    },
227 228 229 230 231 232
    // getLessonById(bankId) {
    //   getLessonById(bankId).then((res) => {
    //     console.log(res);
    //     this.courseName = res.data.courseName;
    //   });
    // },
纪泽龙's avatar
纪泽龙 committed
233 234
    addQuestion(data) {
      // 如果是修改,就用修改的方法,如果是新增,就用新增的方法
235 236
      if (this.subjectId) {
        return updateSubject({ subjectId: this.subjectId, ...data });
纪泽龙's avatar
纪泽龙 committed
237
      } else {
238
        return addSubject({ bankId: this.bankId, ...data });
纪泽龙's avatar
纪泽龙 committed
239 240 241
      }
    },
    rightAnswerClick(index) {
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
      if (this.form.topicType === 2) {
        const ind = this.answerNum.indexOf(index);
        if (ind < 0) {
          this.answerNum.push(index);
        } else {
          this.answerNum.splice(ind, 1);
        }
        this.answerNum = this.answerNum.sort((a, b) => {
          return a - b;
        });
        console.log(this.answerNum);
      } else {
        // 判断跟单选模式差不多
        this.answerNum = [index];
      }
纪泽龙's avatar
纪泽龙 committed
257 258 259 260
    },
    // 删除选项
    removeDomain(question) {
      const index = this.form.questions.indexOf(question);
261
      console.log(index);
纪泽龙's avatar
纪泽龙 committed
262
      // 如果是正确答案,就让正确答案清空
263 264 265 266 267 268 269 270 271 272 273 274 275
      const ind = this.answerNum.indexOf(index);
      if (ind >= 0) {
        this.answerNum.splice(ind, 1);
      }
      // 如果是最后一位呗删除,那不用管,如果不是最后一位置,这一位删除之后,则这一位后面的所有数字都要-1;
      if (index != this.form.questions.length - 1) {
        this.answerNum = this.answerNum.map((item, i) => {
          if (item >= index) {
            return item - 1;
          } else {
            return item;
          }
        });
纪泽龙's avatar
纪泽龙 committed
276 277 278 279
      }
      if (index >= 0) {
        this.form.questions.splice(index, 1);
      }
280 281
      console.log(this.answerNum);
      // console.log(this.form.questions)
纪泽龙's avatar
纪泽龙 committed
282 283 284 285 286 287 288 289
    },
    // 新增选项
    add(addValue) {
      this.form.questions.push({ value: addValue });
      console.log();
    },
    save(num = 2) {
      return new Promise((resove) => {
290
        if (this.answerNum.length <= 0) {
纪泽龙's avatar
纪泽龙 committed
291 292 293 294 295 296 297 298 299 300 301
          this.$message({
            message: "警告,请设置一个正确答案",
            type: "warning",
          });
          return resove(false);
        }
        this.$refs.form.validate((valid) => {
          if (valid) {
            const data = {};
            data.topicTitle = this.form.topicTitle;
            data.topicOption = JSON.stringify(this.form.questions);
302 303 304
            // data.answer = this.answerNum;
            data.answer = JSON.stringify(this.answerNum);
            data.topicType = this.form.topicType;
纪泽龙's avatar
纪泽龙 committed
305 306 307
            this.addQuestion(data).then((res) => {
              if (res.code == 200) {
                // 把修改的这个归位,变成正常添加
308
                this.$emit("update:subjectId", null);
纪泽龙's avatar
纪泽龙 committed
309
                this.$message({
纪泽龙's avatar
纪泽龙 committed
310
                  message: this.subjectId ? "添加题目成功" : "修改题目成功",
纪泽龙's avatar
纪泽龙 committed
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
                  type: "success",
                });
                this.$parent.$parent.componentsNumChange(num);
                this.$parent.$parent.$parent.getList();
                resove(true);
              }
            });
          }
        });
      });
    },

    saveAndNext() {
      this.save(3).then((res) => {
        if (res) {
          this.reset();
327 328
          // this.questionNextNum++;
          this.getQuestion();
纪泽龙's avatar
纪泽龙 committed
329 330 331 332 333 334
        }
      });
    },
    reset() {
      this.form = {
        topicTitle: "",
335
        questions: [{ value: "" }, { value: "" }],
纪泽龙's avatar
纪泽龙 committed
336
      };
337
      this.answerNum = [];
纪泽龙's avatar
纪泽龙 committed
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
      this.addValue = "";
    },
  },
};
</script>
<style lang="scss" scoped>
.add-question {
  width: 100%;
  height: 550px;
  // overflow: hidden;
  flex-direction: column;
  padding-bottom: 7px;
  margin-bottom: 20px;
  border-bottom: 1px solid #bbbbbb;
  .form {
    flex: 1;
    flex-direction: column;
    height: 100%;
    .bottom {
      overflow-y: auto;
      height: 330px;
      box-sizing: border-box;

      .algin-items {
        align-items: center;
        width: 200px;
      }
      .right {
        display: inline-block;
        width: 133px;
        margin-right: 10px;
        line-height: initial;
        padding: 4px 0;
        border: 1px solid #bbbbbb;
        color: #101010;
        font-size: 12px;
        text-align: center;
        border-radius: 4px;
        box-sizing: border-box;
        cursor: pointer;
        &.active {
          background-color: #0bab0c;
          color: #ffffff;
        }
        &:hover {
          background-color: rgba(11, 171, 12, 0.5);
          color: #ffffff;
        }
      }
    }
  }
  .text {
    margin-top: 13px;
    margin-bottom: 34px;
    justify-content: space-between;
    height: 28px;
    .left {
      line-height: 28px;
      color: #101010;
      font-size: 14px;
    }
    .right {
      width: 411px;
      line-height: 28px;
      background: #1d84ff;
      padding-right: 5px;
      color: #fff;
      text-align: right;
    }
  }
}
</style>