zydx-plus 1.35.467 → 1.35.468
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
|
@@ -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>
|