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,52 @@
<form id='configForm' autocomplete='off'>
<input type='hidden' id='id' class='j-ipt' value='{$object["id"]}'/>
<table width='100%' style='margin-top:10px;' class='wst-form'>
<tr>
<th width='120' align='right'>开卡银行<font color='red'>*</font></th>
<td>
<select id='accTargetId' class='j-ipt' data-rule="开卡银行: required;">
<option value=''>请选择</option>
{volist name="banks" id="vo"}
<option value='{$vo["bankId"]}' {if $object.accTargetId == $vo['bankId']}selected{/if}>{$vo["bankName"]}</option>
{/volist}
</select>
</td>
</tr>
<tr>
<th align='right'>开卡地区<font color='red'>*</font></th>
<td>
<select id="area_0" class='j-areas' level="0" onchange="WST.ITAreas({id:'area_0',val:this.value,isRequire:true,className:'j-areas'});" data-rule="开卡地区: required;">
<option value="">-请选择-</option>
{foreach $areas as $v}
<option value="{$v['areaId']}">{$v['areaName']}</option>
{/foreach}
</select>
</td>
</tr>
<tr height='40'>
<th align='right'>卡号<font color='red'>*</font></th>
<td><input type='text' id='accNo' class='j-ipt' value='{$object["accNo"]}' style='width:250px' data-rule="卡号: required;"/></td>
</tr>
<tr>
<th align='right'>持卡人<font color='red'>*</font></th>
<td><input type='text' id='accUser' class='j-ipt' value='{$object["accUser"]}' style='width:250px' data-rule="持卡人: required;"/></td>
</tr>
<tr>
<td colspan='2' style='text-align: center;padding-top:5px;'>
<button type='button' class='wst-sec-but u-btn' onclick="editConfig()">保存</button>
<button type='button' style='margin-left:10px;' class='wst-user-buta2 u-btn' onclick='layerclose()'>取消</button>
</td>
</tr>
</table>
</form>
<script>
$(function(){
var bankAreaIdPath = '{$object["accAreaIdPath"]}';
if(bankAreaIdPath!=''){
var areaIdPath = bankAreaIdPath.split("_");
$('#area_0').val(areaIdPath[0]);
var aopts = {id:'area_0',val:areaIdPath[0],childIds:areaIdPath,className:'j-areas',isRequire:true}
WST.ITSetAreas(aopts);
}
})
</script>