2019-09-06 23:53:10 +08:00

59 lines
2.4 KiB
HTML
Executable File
Raw Permalink 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.

{extend name="base" /}
{block name="css"}
<link rel="stylesheet" type="text/css" href="__ADMIN__/js/mmgrid/mmGrid.css?v={$v}" />
<link rel="stylesheet" type="text/css" href="__STATIC__/plugins/webuploader/webuploader.css?v={$v}" />
{/block}
{block name="js"}
<script src="__ADMIN__/js/mmgrid/mmGrid.js?v={$v}" type="text/javascript"></script>
<script src="__ADMIN__/express/express.js?v={$v}" type="text/javascript"></script>
<script type='text/javascript' src='__STATIC__/plugins/webuploader/webuploader.js?v={$v}'></script>
{/block}
{block name="main"}
{if WSTGrant('KDGL_01')}
<div id='alertTips' class='alert alert-success alert-tips fade in'>
<div id='headTip' class='head'><i class='fa fa-lightbulb-o'></i>操作说明</div>
<ul class='body'>
<li>本功能主要用于管理快递公司的信息。快递代码主要用于物流插件的快递识别查询,填写时请参照各物流插件的快递代码填写。</li>
</ul>
</div>
<div class="wst-toolbar">
<button class="btn btn-success f-right" onclick='javascript:toEdit(0)'><i class='fa fa-plus'></i>新增</button>
<div style="clear:both"></div>
{/if}
</div>
<div class='wst-grid'>
<div id="mmg" class="mmg"></div>
<div id="pg" style="text-align: right;"></div>
</div>
<div id='expressBox' style='display:none'>
<form id='expressForm' autocomplete="off">
<table class='wst-form wst-box-top'>
<tr>
<th width='100'>快递名称<font color='red'>*</font></th>
<td><input type='text' id='expressName' name="expressName" class='ipt' maxLength='20'/></td>
</tr>
<tr>
<th width='100'>快递代码:</th>
<td><input type='text' id='expressCode' name="expressCode" class='ipt' maxLength='20'/></td>
</tr>
<tr>
<td colspan="2" style="padding-left: 35px;">快递代码是用于物流查询,请查询所启用插件的快递代码</td>
</tr>
<tr>
<th>图标:</th>
<td>
<div id='adFilePicker'>上传图标</div><span id='uploadMsg'></span>
<input type='hidden' id='expressImg' name="expressImg" class="ipt" />
</td>
</tr>
<tr>
<th>预览图:</th>
<td><div style="min-height:70px;" id="preview"></div></td>
</tr>
</table>
</form>
</div>
<script>
$(function(){initGrid()});
</script>
{/block}