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,67 @@
{extend name="base" /}
{block name="css"}
<link rel="stylesheet" type="text/css" href="__STATIC__/plugins/webuploader/webuploader.css?v={$v}" />
{/block}
{block name="js"}
<script type='text/javascript' src='__STATIC__/plugins/webuploader/webuploader.js?v={$v}'></script>
<script src="__ADMIN__/adpositions/adpositions.js?v={$v}" type="text/javascript"></script>
{/block}
{block name="main"}
<form id="adPositionsForm" autocomplete="off">
<table class='wst-form wst-box-top'>
<tr>
<th width='150'>位置类型<font color='red'>*</font></th>
<td>
<select id="positionType" name="positionType" class='ipt' maxLength='20'>
<option value="">-请选择-</option>
{volist name=":WSTDatas('ADS_TYPE')" id='vo'}
<option <?=($data['positionType']==$vo['dataVal'])?'selected':'';?> value="{$vo['dataVal']}">{$vo['dataName']}</option>
{/volist}
</select>
</td>
</tr>
<tr>
<th>位置名称<font color='red'>*</font></th>
<td>
<input type="text" id="positionName" name="positionName" value='{$data['positionName']}' class="ipt" />
</td>
</tr>
<tr>
<th>位置代码<font color='red'>*</font></th>
<td>
<input type="text" id="positionCode" name="positionCode" value='{$data['positionCode']}' class="ipt" />
</td>
</tr>
<tr>
<th>建议宽度<font color='red'>*</font></th>
<td>
<input type="text" id="positionWidth" name="positionWidth" value='{$data['positionWidth']}' class="ipt" maxLength='4' />
</td>
</tr>
<tr>
<th>建议高度<font color='red'>*</font></th>
<td>
<input type='text' id='positionHeight' name="positionHeight" value='{$data['positionHeight']}' class='ipt' maxLength='4'/>
</td>
</tr>
<tr>
<th>排序号<font color='red'> </font></th>
<td>
<input type='text' id='apSort' name="apSort" value='{$data['apSort']}' class='ipt' maxLength='10'/>
</td>
</tr>
<tr>
<td colspan='2' align='center' class='wst-bottombar'>
<input type="hidden" name="id" id="positionId" class="ipt" value="{$data['positionId']+0}" />
<button type="submit" class='btn btn-primary btn-mright'><i class="fa fa-check"></i>提交</button>
<button type="button" onclick="javascript:history.go(-1)" class='btn'><i class="fa fa-angle-double-left"></i>返回</button>
</td>
</tr>
</table>
</form>
<script>
$(function(){editInit()});
</script>
{/block}