Init Repo

This commit is contained in:
root
2019-09-06 23:53:10 +08:00
commit f0ef89dfbb
7905 changed files with 914138 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{extend name="base" /}
{block name="css"}
<link rel="stylesheet" type="text/css" href="__ADMIN__/js/mmgrid/mmGrid.css?v={$v}" />
{/block}
{block name="js"}
<script src="__ADMIN__/js/mmgrid/mmGrid.js?v={$v}" type="text/javascript"></script>
<script src="__ADMIN__/banks/banks.js?v={$v}" type="text/javascript"></script>
{/block}
{block name="main"}
{if WSTGrant('YHGL_01')}
<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='bankBox' style='display:none'>
<form id='bankForm' autocomplete="off">
<table class='wst-form wst-box-top'>
<tr>
<th width='100'>银行名称<font color='red'>*</font></th>
<td><input type='text' id='bankName' name="bankName" class='ipt' maxLength='20'/></td>
</tr>
</table>
</form>
</div>
<script>
$(function(){initGrid()});
</script>
{/block}