zydx-plus 1.35.567 → 1.35.569

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zydx-plus",
3
- "version": "1.35.567",
3
+ "version": "1.35.569",
4
4
  "description": "Vue.js",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -260,7 +260,7 @@ let buttonNames = {
260
260
  score: '成绩报告',
261
261
  analysis: '统计分析',
262
262
  power: '学习动力',
263
- studyRecord: '学习档案'
263
+ // studyRecord: '学习档案'
264
264
  },
265
265
 
266
266
  },
@@ -278,7 +278,7 @@ let buttonNames = {
278
278
  lowLevel: {
279
279
  default: "studyRecord",
280
280
  power: '学习动力',
281
- studyRecord: '学习档案'
281
+ // studyRecord: '学习档案'
282
282
  },
283
283
  }
284
284
  }
@@ -441,7 +441,7 @@ let buttonNames = {
441
441
  score: '成绩报告',
442
442
  analysis: '统计分析',
443
443
  power: '学习动力',
444
- studyRecord: '学习档案'
444
+ // studyRecord: '学习档案'
445
445
  },
446
446
  },
447
447
  2: {
@@ -458,7 +458,7 @@ let buttonNames = {
458
458
  lowLevel: {
459
459
  default: "studyRecord",
460
460
  power: '学习动力',
461
- studyRecord: '学习档案'
461
+ // studyRecord: '学习档案'
462
462
  }
463
463
  }
464
464
  }
@@ -487,7 +487,7 @@ let buttonNames = {
487
487
  score: '成绩报告',
488
488
  analysis: '统计分析',
489
489
  power: '学习动力',
490
- studyRecord: '学习档案'
490
+ // studyRecord: '学习档案'
491
491
  },
492
492
  },
493
493
  2: {
@@ -504,7 +504,7 @@ let buttonNames = {
504
504
  lowLevel: {
505
505
  default: "studyRecord",
506
506
  power: '学习动力',
507
- studyRecord: '学习档案'
507
+ // studyRecord: '学习档案'
508
508
  },
509
509
  }
510
510
  }
@@ -759,7 +759,7 @@ let buttonNames = {
759
759
  score: '成绩报告',
760
760
  analysis: '统计分析',
761
761
  power: '学习动力',
762
- studyRecord: '学习档案'
762
+ // studyRecord: '学习档案'
763
763
  },
764
764
  },
765
765
  2: {
@@ -776,7 +776,7 @@ let buttonNames = {
776
776
  lowLevel: {
777
777
  default: "studyRecord",
778
778
  power: '学习动力',
779
- studyRecord: '学习档案'
779
+ // studyRecord: '学习档案'
780
780
  },
781
781
  }
782
782
  }
@@ -24,7 +24,7 @@
24
24
  </div>
25
25
  </div>
26
26
  </div>
27
- <div class="choice" v-if="item.testKey" v-show="item.open">
27
+ <div class="choice" v-if="item.testKey" v-show="item.open && isLook">
28
28
  <div class="choice-box" v-for="(ts,ind) in item.testKey">
29
29
  <label>
30
30
  <input class="choice-input" style="display: none;" :disabled="disabled" :checked="ts.checked"
@@ -91,7 +91,7 @@ export default {
91
91
  type: Boolean,
92
92
  default: false
93
93
  },
94
- isLook: { // 题库资源中,查看试题true,创建试题false
94
+ isLook: { // 题库资源中,查看试题true,创建试题false(新版题库类资源-选择题编辑状态时,试题选项只在编辑框中显示此时isLook: false)
95
95
  type: Boolean,
96
96
  default: true
97
97
  }
@@ -188,7 +188,9 @@ export default {
188
188
  if(this.value[index]){
189
189
  if(item.resourceId===this.value[index].resourceId){
190
190
  this.value[index].open = item.open
191
- this.value[index].customBut[0].active = item.open
191
+ if (item.quesType === '101' || item.quesType === '102' || item.quesType === '102_1' || item.quesType === '102_2') { // 解决主观题点击完成按钮‘试题设置’按钮收起问题
192
+ this.value[index].customBut[0].active = item.open
193
+ }
192
194
  }
193
195
  }
194
196
  })
package/src/index.js CHANGED
@@ -89,7 +89,7 @@ function install(app) {
89
89
  }
90
90
 
91
91
  export default {
92
- version: '1.35.567',
92
+ version: '1.35.569',
93
93
  install,
94
94
  Calendar,
95
95
  Message,