zydx-plus 1.35.631 → 1.35.632
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/seek/src/word.vue +1 -5
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<!-- 题目标题区域:有题号展示题号,否则展示序号 -->
|
|
9
9
|
<div class="subject-title" :class="{'padd': item.top !== 0}" v-if="item.subject">
|
|
10
10
|
<!-- 多选模式下的勾选框 -->
|
|
11
|
-
<input v-if="multipleShow" type="checkbox" :disabled="
|
|
11
|
+
<input v-if="multipleShow" type="checkbox" :disabled="item.disabled" :checked="item.checked" @change="checkboxChange($event,index)"
|
|
12
12
|
name="check"/>
|
|
13
13
|
<!-- 有题号展示题号 -->
|
|
14
14
|
<span v-if="item.quesNumber" :style="{'font-weight': titleCrude?700:'normal'}">{{ item.quesNumber }}<em
|
|
@@ -91,10 +91,6 @@ export default {
|
|
|
91
91
|
type: Boolean,
|
|
92
92
|
default: false // 是否禁用交互
|
|
93
93
|
},
|
|
94
|
-
multipleDisabled: {
|
|
95
|
-
type: Boolean,
|
|
96
|
-
default: false // 多选模式是否禁用交互
|
|
97
|
-
},
|
|
98
94
|
multiple: {
|
|
99
95
|
type: Boolean,
|
|
100
96
|
default: false // 是否开启多选模式
|