123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <template>
- <div class="c_box">
- <!-- <div class="mask"></div> -->
- <div v-if="!checkJson">暂未设置题目</div>
- <div v-else class="choice_box">
- <div class="title">{{ `(${option[checkJson.type].name})` + checkJson.title }}<span style="color: #efa030;" v-if="checkJson.score">({{ '分值:'+checkJson.score+'分' }})</span></div>
- <div class="choices">
- <div class="choice" v-for="(item, index) in checkJson.array" :key="index">
- <div class="choice_c" v-if="checkJson.type == 2"><el-checkbox v-model="checkJson.answer2" :label="index"
- :disabled="checktype == 2"></el-checkbox><span
- :class="{ right: see && cJson.answer.indexOf(index) != -1 }"
- @click="check(checkJson.type, index)">{{ item.option }}</span></div>
- <div class="choice_c" v-if="checkJson.type == 1"><el-radio v-model="checkJson.answer2[0]" :label="index"
- :disabled="checktype == 2"></el-radio><span
- :class="{ right: see && cJson.answer.indexOf(index) != -1 }"
- @click="check(checkJson.type, index)">{{ item.option }}</span></div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- props: {
- cJson: {
- type: Object,
- },
- checktype: {
- type: Number,
- default: 1
- },
- see: {
- type: Boolean,
- default: false
- }
- },
- data() {
- return {
- option: {
- 1: { name: 'Single choice' },
- 2: { name: 'Single choice' }
- },
- checkJson: undefined
- }
- },
- watch: {
- checkJson: {
- handler(newValue) {
- this.$emit('update:cJson', newValue)
- },
- deep: true
- }
- },
- methods: {
- depthCopy(s) {
- return JSON.parse(JSON.stringify(s));
- },
- check(type, index) {
- if (this.checktype == 2) {
- return;
- }
- if (type == 2) {
- if (this.checkJson.answer2.indexOf(index) == -1) {
- this.checkJson.answer2.push(index)
- } else {
- this.checkJson.answer2.splice(this.checkJson.answer2.indexOf(index), 1)
- }
- } else if (type == 1) {
- this.checkJson.answer2[0] = index
- }
- this.$forceUpdate()
- }
- },
- mounted() {
- this.checkJson = this.cJson ? this.depthCopy(this.cJson) : undefined
- }
- }
- </script>
- <style scoped>
- .c_box {
- width: 100%;
- position: relative;
- }
- .mask {
- position: absolute;
- height: 100%;
- width: 100%;
- z-index: 2;
- }
- .choice_box {}
- .choice_box>.title {
- font-weight: bold;
- width: 100%;
- word-break: break-all;
- }
- .choice_box>.choices {
- margin-top: 10px;
- padding: 0 10px;
- }
- .choice_box>.choices>.choice {
- word-break: break-all;
- }
- .choice_box>.choices>.choice+.choice {
- margin-top: 5px;
- }
- .choice_box>.choices>.choice>.choice_c {
- display: flex;
- }
- .choice_box>.choices>.choice>.choice_c>span {
- /* margin-left: 10px; */
- cursor: pointer;
- }
- .choice_box>.choices>.choice>.choice_c>.el-checkbox {
- margin-top: 4px;
- margin-right: 10px;
- }
- .choice_box>.choices>.choice>.choice_c>.el-radio {
- margin-top: 4px;
- margin-right: 10px;
- }
- .choice_c>>>.el-checkbox__label {
- display: none;
- }
- .choice_c>>>.el-radio__label {
- display: none;
- }
- .choice_c .right {
- color: #efa030;
- }
- .choice_c .right::after {
- content: '(正确答案)';
- }
- .choice_box>.choices>.choice>>>.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after {
- border-color: #fff !important;
- }
- .choice_box>.choices>.choice>>>.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner {
- background-color: #409EFF !important;
- border-color: #409EFF !important;
- }
- .choice_box>.choices>.choice>>>.el-radio__input.is-disabled.is-checked .el-radio__inner {
- background-color: #409EFF !important;
- border-color: #409EFF !important;
- }
- .choice_box>.choices>.choice>>>.el-radio__input.is-disabled.is-checked .el-radio__inner::after {
- background-color: #fff !important;
- }</style>
|