|
@@ -12,6 +12,7 @@
|
|
|
Bookanswer.radio === index || Bookanswer.checkbox.indexOf(index) != -1
|
|
|
? 'active'
|
|
|
: '',
|
|
|
+ items.Isexample ? 'example' : '',
|
|
|
]"
|
|
|
>
|
|
|
<template v-if="type == 'checkbox'">
|
|
@@ -20,6 +21,7 @@
|
|
|
:class="
|
|
|
item.detail && item.detail.pyNumber[0] > 0 ? 'radio-hasPy' : ''
|
|
|
"
|
|
|
+ :disabled="TaskModel == 'ANSWER' || items.Isexample"
|
|
|
>
|
|
|
<el-checkbox
|
|
|
:label="index"
|
|
@@ -60,6 +62,7 @@
|
|
|
:class="
|
|
|
item.detail && item.detail.pyNumber[0] > 0 ? 'radio-hasPy' : ''
|
|
|
"
|
|
|
+ :disabled="TaskModel == 'ANSWER' || items.Isexample"
|
|
|
>
|
|
|
<span class="option_number" v-if="item.number">{{
|
|
|
item.number
|
|
@@ -160,7 +163,7 @@ ul {
|
|
|
}
|
|
|
&.active {
|
|
|
// background: #fff;
|
|
|
- background: rgba(157, 202, 255, 0.15);
|
|
|
+ // background: rgba(157, 202, 255, 0.15);
|
|
|
border-radius: 4px;
|
|
|
}
|
|
|
&.option1 {
|