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

118 lines
4.5 KiB
HTML
Executable File
Raw 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"}
<style>
#preview img{max-width: 600px;max-height:150px;}
</style>
<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__/ads/admgrs.js?v={$v}" type="text/javascript"></script>
{/block}
{block name="main"}
<form id="adsForm">
<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' onchange='javascript:addPosition(this.value);'>
<option value=''>请选择</option>
{volist name=":WSTDatas('ADS_TYPE')" id='vo'}
<option {if $data['positionType'] == $vo['dataVal']}selected{/if} value="{$vo['dataVal']}">{$vo['dataName']}</option>
{/volist}
</select>
</td>
</tr>
<tr>
<th>广告位置<font color='red'>*</font></th>
<td>
<select id="adPositionId" name="adPositionId" class='ipt' maxLength='20' onchange='javascript:getPhotoSize(this.value);'>
<option value="">-请选择-</option>
</select>
</td>
</tr>
<tr>
<!--添加链接类型-->
<th width='150'>链接类型<font color='red'>*</font></th>
<td>
<select id="targetType" name="targetType" class='ipt' maxLength='20'>
<option {if $data['targetType'] == 1}selected{/if} value="1">商品</option>
<option {if $data['targetType'] == 2}selected{/if} value="2">店铺</option>
<option {if $data['targetType'] == 3}selected{/if} value="3">活动</option>
</select>
</td>
</tr>
<!--添加链接类型结束-->
<tr>
<tr>
<th>广告标题<font color='red'>*</font></th>
<td><input type='text' id='adName' name="adName" value='{$data['adName']}' class='ipt' maxLength='20'/></td>
</tr>
<tr>
<th>广告图片<font color='red'>*</font></th>
<td><div id='adFilePicker'>上传广告图</div><span id='uploadMsg'></span>
<div>
图片大小:<span id="img_size">300x300</span>(px),格式为 gif, jpg, jpeg, png
</div>
</td>
</tr>
<tr>
<th>预览图<font color='red'> </font></th>
<td>
<div id="preview" style="min-height:30px;">
{if ($data['adFile']!='')}
<img src="__IMGURL__/{$data['adFile']}">
{/if}
</div>
<input type="hidden" name="adFile" id="adFile" class="ipt" value="{$data['adFile']}" />
</td>
</tr>
<tr>
<th>广告网址<font color='red'> </font></th>
<td>
<input type="text" id="adURL" class="ipt" maxLength="200" value='{$data['adURL']}' />
</td>
</tr>
<tr>
<th >广告开始时间<font color='red'>*</font></th>
<td>
<input type="text" style="margin:0px;vertical-align:baseline;" id="adStartDate" name="adStartDate" class="laydate-icon ipt" maxLength="20" value='{$data['adStartDate']}' />
</td>
</tr>
<tr>
<th>广告结束时间<font color='red'>*</font></th>
<td>
<input type="text" style="margin:0px;vertical-align:baseline;" id="adEndDate" name="adEndDate" class="laydate-icon ipt" maxLength="20" value='{$data['adEndDate']}' />
</td>
</tr>
<tr>
<th>广告排序号:</th>
<td>
<input type="text" id="adSort" class="ipt" maxLength="20" value='{$data['adSort']}' />
</td>
</tr>
<tr>
<td colspan='2' align='center' class='wst-bottombar'>
<input type="hidden" name="id" id="adId" class="ipt" value="{$data['adId']+0}" />
<button type="submit" class="btn btn-primary btn-mright" ><i class="fa fa-check"></i>提交</button>
<button type="button" class="btn" onclick="javascript:history.go(-1)"><i class="fa fa-angle-double-left"></i>返回</button>
</td>
</tr>
</table>
</form>
<script>
$(function(){
editInit();
//初始化位置类型
addPosition("{$data['positionType']}","{$data['adPositionId']}");
});
</script>
{/block}