fix: 关闭定时任务,不显示下次执行时间

This commit is contained in:
chenjianxing 2020-07-21 01:42:25 +08:00
parent 4fffe246ed
commit b7c0acb837
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@
<crontab-result v-show="false" :ex="schedule.value" ref="crontabResult" @resultListChange="resultListChange"/>
</div>
<div>
<span :class="{'disable-character': !schedule.enable}"> {{$t('schedule.next_execution_time')}}{{this.recentList.length > 0 ? this.recentList[0] : $t('schedule.not_set')}} </span>
<span :class="{'disable-character': !schedule.enable}"> {{$t('schedule.next_execution_time')}}{{this.recentList.length > 0 && schedule.enable ? this.recentList[0] : $t('schedule.not_set')}} </span>
</div>
</div>
</template>