wpfw_ewei_shopv2/template/web/system/copyright/manage.html
2023-02-14 19:57:32 +08:00

54 lines
2.0 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/manage')}&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">LOGO</label>
<div class="col-sm-9">
{php echo tpl_form_field_image('logo',$copyrights['logo'])}
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">页面标题</label>
<div class="col-sm-9">
<input type="text" class="form-control" name="title" value="{$copyrights['title']}" />
</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'}