zydx-plus 1.32.288 → 1.32.291
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/biz_header/src/button_name.js +6 -6
- package/src/components/biz_taskInfo/src/bizTaskInfo.vue +2 -2
- package/src/components/choice/src/choice.vue +1 -1
- package/src/components/editor/src/editor.vue +1083 -1009
- package/src/components/editor/src/mammoth.browser.min.js +18 -0
- package/src/components/editor2/src/editor.vue +12 -10
- package/src/components/preface/src/preface.vue +18 -9
- package/src/components/read/src/read.vue +47 -6
- package/src/components/seek/src/word.css +1 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -1257,17 +1257,17 @@ let buttonNames = {
|
|
|
1257
1257
|
headLevel: {
|
|
1258
1258
|
default: "allClass",
|
|
1259
1259
|
allClass: this.getPrefix(item) + '检测',
|
|
1260
|
-
wrongItem: '
|
|
1260
|
+
wrongItem: '重做试题',
|
|
1261
1261
|
},
|
|
1262
1262
|
otherLevel: {
|
|
1263
1263
|
default: "allClass",
|
|
1264
1264
|
allClass: this.getPrefix(item) + '检测',
|
|
1265
|
-
wrongItem: '
|
|
1265
|
+
wrongItem: '重做试题',
|
|
1266
1266
|
},
|
|
1267
1267
|
lowLevel: {
|
|
1268
1268
|
default: "allClass",
|
|
1269
1269
|
allClass: this.getPrefix(item) + '检测',
|
|
1270
|
-
wrongItem: '
|
|
1270
|
+
wrongItem: '重做试题',
|
|
1271
1271
|
}
|
|
1272
1272
|
}
|
|
1273
1273
|
}
|
|
@@ -1510,17 +1510,17 @@ let buttonNames = {
|
|
|
1510
1510
|
headLevel: {
|
|
1511
1511
|
default: "allClass",
|
|
1512
1512
|
allClass: this.getPrefix(item) + '训练',
|
|
1513
|
-
wrongItem: '
|
|
1513
|
+
wrongItem: '重做试题',
|
|
1514
1514
|
},
|
|
1515
1515
|
otherLevel: {
|
|
1516
1516
|
default: "allClass",
|
|
1517
1517
|
allClass: this.getPrefix(item) + '训练',
|
|
1518
|
-
wrongItem: '
|
|
1518
|
+
wrongItem: '重做试题',
|
|
1519
1519
|
},
|
|
1520
1520
|
lowLevel: {
|
|
1521
1521
|
default: "allClass",
|
|
1522
1522
|
allClass: this.getPrefix(item) + '训练',
|
|
1523
|
-
wrongItem: '
|
|
1523
|
+
wrongItem: '重做试题',
|
|
1524
1524
|
},
|
|
1525
1525
|
}
|
|
1526
1526
|
}
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
</div>
|
|
61
61
|
</template>
|
|
62
62
|
<div v-if="actionConfig[actionId].isShowLaterScore" class="task_item_main" :class="getZindex(index)">
|
|
63
|
-
<div class="task_text_desc"
|
|
63
|
+
<div class="task_text_desc">迟交1扣分:</div>
|
|
64
64
|
<div class="width250">
|
|
65
65
|
<zydxSelect :color="'#000000'" :readonly="readonly" :options="laterScoreOptions" v-model:value="laterScore"></zydxSelect>
|
|
66
66
|
</div>
|
|
@@ -687,7 +687,7 @@
|
|
|
687
687
|
},
|
|
688
688
|
laterScore: function (val) { //时间改变
|
|
689
689
|
this.taskInfoList.forEach(item => {
|
|
690
|
-
item.laterScore
|
|
690
|
+
item.laterScore = val
|
|
691
691
|
});
|
|
692
692
|
},
|
|
693
693
|
taskInfoList: {
|