zydx-plus 1.35.576 → 1.35.577
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
CHANGED
|
@@ -2740,7 +2740,7 @@ let buttonNames = {
|
|
|
2740
2740
|
}
|
|
2741
2741
|
},
|
|
2742
2742
|
resource_lesson_homework: {
|
|
2743
|
-
actionName: '
|
|
2743
|
+
actionName: '学习思考',
|
|
2744
2744
|
buttonList: {
|
|
2745
2745
|
0: {
|
|
2746
2746
|
// headLevel: {
|
|
@@ -2752,7 +2752,7 @@ let buttonNames = {
|
|
|
2752
2752
|
// },
|
|
2753
2753
|
headLevel: {
|
|
2754
2754
|
default: "resourceIndex",
|
|
2755
|
-
resourceIndex: '
|
|
2755
|
+
resourceIndex: '思考题目',
|
|
2756
2756
|
pipeGuideAnalysis: '管导评析'
|
|
2757
2757
|
},
|
|
2758
2758
|
otherLevel: {
|
|
@@ -6,14 +6,22 @@
|
|
|
6
6
|
<div class="subject-title" :class="{'padd': item.top !== 0}" v-if="item.subject">
|
|
7
7
|
<input v-if="multipleShow" type="checkbox" :checked="item.checked" @change="checkboxChange($event,index)"
|
|
8
8
|
name="check"/>
|
|
9
|
-
<span :style="{'font-weight': titleCrude?700:'normal'}">{{ item.
|
|
9
|
+
<span v-if="item.quesNumber" :style="{'font-weight': titleCrude?700:'normal'}">{{ item.quesNumber }}<em
|
|
10
10
|
v-html="item.title"></em><em v-if="scoreShow">({{ item.score }}分)</em>
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
<i class="subject-but" ref="subject">
|
|
12
|
+
<!-- <b :style="{right: -item.right + 'px', top: item.top + 'px'}" ref="b"> -->
|
|
13
|
+
<button class="sees-but" :disabled="it.disabled" v-for="(it) in item.customBut" :class="{'buts-actives theme-text': it.active&&it.butStart,'buts-disabled': it.disabled}" @click="customButTap(it,item)">{{ it.active? it.nameActive: it.name }}</button>
|
|
14
|
+
<!-- </b> -->
|
|
15
|
+
</i>
|
|
16
|
+
</span>
|
|
17
|
+
<span v-else :style="{'font-weight': titleCrude?700:'normal'}">{{ item.order ? item.order : index + 1 }}{{ item.order === ' ' ? '' : '.' }}<em
|
|
18
|
+
v-html="item.title"></em><em v-if="scoreShow">({{ item.score }}分)</em>
|
|
19
|
+
<i class="subject-but" ref="subject">
|
|
20
|
+
<!-- <b :style="{right: -item.right + 'px', top: item.top + 'px'}" ref="b"> -->
|
|
21
|
+
<button class="sees-but" :disabled="it.disabled" v-for="(it) in item.customBut" :class="{'buts-actives theme-text': it.active&&it.butStart,'buts-disabled': it.disabled}" @click="customButTap(it,item)">{{ it.active? it.nameActive: it.name }}</button>
|
|
22
|
+
<!-- </b> -->
|
|
23
|
+
</i>
|
|
24
|
+
</span>
|
|
17
25
|
</div>
|
|
18
26
|
</div>
|
|
19
27
|
<div v-if="item.alist" class="subject-html" v-show="item.open">
|