47 lines
1.7 KiB
HTML
47 lines
1.7 KiB
HTML
{template '_header'}
|
|
<div class="page-heading"><h2>手机端底部版权 </h2></div>
|
|
|
|
<form id="dataform" action="" method="post" class="form-horizontal form-validate">
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label">选择公众号</label>
|
|
<div class="col-sm-9">
|
|
<select id='wechatid' name='wechatid' class='form-control select2' onchange="location.href= '{php echo webUrl('system/copyright')}&wechatid=' + $(this).val()" >
|
|
<option value=''></option>
|
|
{loop $wechats $we}
|
|
<option value='{$we['uniacid']}' {if $_GPC['wechatid']==$we['uniacid']}selected{/if}><?php echo $we['name'] ?></option>
|
|
{/loop}
|
|
<option value='-1' {if $_GPC['wechatid']==-1 || empty($_GPC['wechatid'])}selected{/if}>全部公众号</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label">背景颜色</label>
|
|
<div class="col-sm-9">
|
|
{php echo tpl_form_field_color('bgcolor',$copyrights['bgcolor'])}
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label">底部版权</label>
|
|
<div class="col-sm-9">
|
|
{php echo tpl_ueditor('copyright',$copyrights['copyright'])}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label"></label>
|
|
<div class="col-sm-9">
|
|
<input id="btn_submit" type="submit" value="保存" class="btn btn-primary"/>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{template '_footer'}
|
|
|