cnhis-design-vue 0.2.52-beta → 0.2.53-beta
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/es/index/index.js +25 -25
- package/es/index/style.css +1 -1
- package/es/scale-view/index.js +25 -25
- package/es/scale-view/style.css +1 -1
- package/lib/cui.common.js +52 -52
- package/lib/cui.umd.js +52 -52
- package/lib/cui.umd.min.js +7 -7
- package/package.json +1 -1
- package/packages/scale-view/scaleView.vue +11 -2
package/package.json
CHANGED
|
@@ -444,12 +444,21 @@ export default create({
|
|
|
444
444
|
!this.isPreviewScale &&
|
|
445
445
|
this.showEvaluatePage &&
|
|
446
446
|
this.showEvaluateSettingWrap &&
|
|
447
|
-
!this.isFinished
|
|
447
|
+
!this.isFinished &&
|
|
448
|
+
!this.noBtn &&
|
|
449
|
+
!this.hideBtn
|
|
448
450
|
);
|
|
449
451
|
},
|
|
450
452
|
// 是否展示倒计时
|
|
451
453
|
showEvaluateCoundownPage() {
|
|
452
|
-
return
|
|
454
|
+
return (
|
|
455
|
+
!this.isPreviewScale &&
|
|
456
|
+
!this.showEvaluateEntry &&
|
|
457
|
+
this.showEvaluateCountdownWrap &&
|
|
458
|
+
!this.isFinished &&
|
|
459
|
+
!this.noBtn &&
|
|
460
|
+
!this.hideBtn
|
|
461
|
+
);
|
|
453
462
|
},
|
|
454
463
|
// 是否设置 evaluateResultSetting
|
|
455
464
|
hasEvaluateResultSetting() {
|