wpfw_ewei_shopv2/plugin/exhelper/template/web/printset.html
2023-02-14 19:57:32 +08:00

29 lines
973 B
HTML

{template '_header'}
<div class='page-heading'><h2> 打印机设置</h2></div>
<form id="setform" action="" method="post" class="form-horizontal form-validate">
<div class="alert alert-info">注意: 1. 请将打印机连接至本机。2. 在本机上安装打印控件。3. 将打印控件中的打印端口下面的打印端口设为相同。</div>
<div class="form-group">
<label class="col-sm-2 control-label must">IP端口</label>
<div class="col-sm-9 col-xs-12">
{ifp 'exhelper.printset.edit'}
<input type='number' class='form-control' name='port' value="{$sys['port']}" data-rule-required='true' />
{else}
<div class='form-control-static'>{$sys['port']}</div>
{/if}
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label"></label>
<div class="col-sm-9">
{ifp 'exhelper.printset.edit'}
<input type="submit" value="提交" class="btn btn-primary" />
{/if}
</div>
</div>
</form>
{template '_footer'}