mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-05 14:45:33 +08:00
18 lines
707 B
HTML
18 lines
707 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<div class="tableform">
|
||
<div class="division">
|
||
<h5>下载出入库CSV模板文件</h5>
|
||
<{t}>请选择导出的类型:<{/t}>
|
||
<select name='_ioType' id='ioType'>
|
||
<option selected="selected" value=''>请选择...</option>
|
||
<{foreach from=$iotype item=item key=key}>
|
||
<option value='<{$item}>'><{$key}></option>
|
||
<{/foreach}>
|
||
</select>
|
||
<{button class="btn-primary" label="下载" type="button" onClick="if(document.getElementById('ioType').value != '') location.href=document.getElementById('ioType').value;"}>
|
||
</div>
|
||
</div> |