zydx-plus 1.35.467 → 1.35.469

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.467",
3
+ "version": "1.35.469",
4
4
  "description": "Vue.js",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -30,7 +30,7 @@
30
30
  <!-- 单独在最低节点设置的按钮 -->
31
31
  <button :ref="childButtonIndex + item.catalogId" class="defaultButton"
32
32
  :class="childButtonIndex === getSelectBtnIndex && selectItem.level === item.level? 'active theme-text' : ''"
33
- v-if="item.level !== 0 && (!item.children || item.children.length === 0) && buttonIndex === 'lowLevel' && childButtonIndex !== 'default'"
33
+ v-if="item.level !== 0 && (!item.children || item.children.length === 0) && buttonIndex === 'lowLevel' && childButtonIndex !== 'default' && (tabType === 2 && childButtonIndex !=='analysis' || tabType === 0)"
34
34
  @click="clickRightBtn(item, childButtonIndex, childButtonInfo)"
35
35
  v-html="childButtonInfo"
36
36
  />
@@ -279,8 +279,8 @@ export default {
279
279
  this.midNum = 0
280
280
  this.question.forEach(x => {
281
281
  this.easyNum += x.easyScore === '' || x.easyScore === '-' ? 0 : Number(x.easyScore) * Number(x.easy)
282
- this.hardNum += x.hardScore === ''|| x.hardScore === '-' ? 0 : Number(x.hardScore) * Number(x.hard)
283
- this.midNum += x.midScore === ''|| x.midScore === '-' ? 0 : Number(x.midScore) * Number(x.mid)
282
+ this.hardNum += x.hardScore === '' || x.hardScore === '-' ? 0 : Number(x.hardScore) * Number(x.hard)
283
+ this.midNum += x.midScore === '' || x.midScore === '-' ? 0 : Number(x.midScore) * Number(x.mid)
284
284
  })
285
285
  this.totalNum = this.easyNum + this.hardNum + this.midNum
286
286
  },
@@ -343,6 +343,7 @@ export default {
343
343
  .qu-input {
344
344
  width: 60px;
345
345
  display: inline-block;
346
+ padding-top: 2px;
346
347
  overflow: hidden;
347
348
  }
348
349
 
@@ -377,4 +378,14 @@ export default {
377
378
  display: inline-block;
378
379
  font-weight: bold;
379
380
  }
381
+
382
+ table {
383
+ border-collapse: collapse !important;
384
+ border-spacing: 2px !important;
385
+ }
386
+ table tr,table tr th{
387
+ height: 30px;
388
+ box-sizing: border-box;
389
+ line-height: 1;
390
+ }
380
391
  </style>
package/src/index.js CHANGED
@@ -87,7 +87,7 @@ function install(app) {
87
87
  }
88
88
 
89
89
  export default {
90
- version: '1.35.467',
90
+ version: '1.35.469',
91
91
  install,
92
92
  Calendar,
93
93
  Message,