feat(sj_1.1.0-beta2): 重试场景的随机和固定间隔时间限制最小时间为10秒

This commit is contained in:
opensnail 2024-07-06 13:15:51 +08:00
parent 582e405dcb
commit 06fae444b4

View File

@ -65,7 +65,12 @@ watch(
<CronInput v-if="backOff === 3" v-model="cron" :lang="app.locale" />
<NInputGroup v-else-if="backOff === 2 || backOff === 4">
<NInputNumber v-model:value="interval" :placeholder="$t('page.retryScene.form.triggerInterval')" clearable />
<NInputNumber
v-model:value="interval"
:min="10"
:placeholder="$t('page.retryScene.form.triggerInterval')"
clearable
/>
<NInputGroupLabel>{{ $t('common.second') }}</NInputGroupLabel>
</NInputGroup>
</template>