Files
OMS/app/omeauto/view/system/setting.html
2025-12-28 23:13:25 +08:00

16 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
Copyright © ShopeX http://www.shopex.cn. All rights reserved.
See LICENSE file for license details.
-->
<tr>
<th>订单缓冲时间:</th>
<td><select name="set[auto.setting][bufferTime]" >
<option value="10" <{if $setData.auto_setting.bufferTime == '10'}>selected<{/if}>>10分钟</option>
<option value="30" <{if $setData.auto_setting.bufferTime == '30'}>selected<{/if}>>30分钟</option>
<option value="60" <{if $setData.auto_setting.bufferTime == '60'}>selected<{/if}>>1小时</option>
<option value="120" <{if $setData.auto_setting.bufferTime == '120'}>selected<{/if}>>2小时</option>
<option value="180" <{if $setData.auto_setting.bufferTime == '180'}>selected<{/if}>>3小时</option>
<option value="240" <{if $setData.auto_setting.bufferTime == '240'}>selected<{/if}>>4小时</option>
</select><{help}>用户下单后需等待一定的时间后才进入处理流程,能有效解决多个订单合并的问题<{/help}></td>
</tr>