openatc-components 0.0.16 → 0.0.17

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.
@@ -76,8 +76,10 @@
76
76
  <!-- 相位倒计时 -->
77
77
  <div class="phaseCountdown" v-if="devStatus === 3 && isLoaded && isHasPhase">
78
78
  <div v-for="curPhase in phaseCountdownList" :key="curPhase.id" :style="{color: curPhase.phaseCountdownColor}">
79
- <span style="float: left;font-size: 20px;color: #fff;width: 70px;">{{$t('openatccomponents.overview.phase')}}{{curPhase.id}}:</span>
80
- <span style="float: left;">{{curPhase.phaseCountdown}}</span>
79
+ <div v-if="curPhase.phaseCountdown !== -1">
80
+ <span style="float: left;font-size: 20px;color: #fff;width: 70px;">{{$t('openatccomponents.overview.phase')}}{{curPhase.id}}:</span>
81
+ <span style="float: left;">{{curPhase.phaseCountdown}}</span>
82
+ </div>
81
83
  </div>
82
84
  </div>
83
85
  <!-- 手动刷新 -->