rules.html
1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{template 'common/header'}
<div class="main">
<form action="" method="post" class="form-horizontal" enctype="multipart/form-data" onsubmit='return validate(this);'>
<input type="hidden" name="c" value="site" />
<input type="hidden" name="a" value="entry" />
<input type="hidden" name="m" value="wwx_fxxt" />
<input type="hidden" name="id" value="{$theone['id']}" />
<input name="token" type="hidden" value="{$_W['token']}" />
<div class="panel panel-default">
<div class="panel-heading">单页(自定义区域)设置</div>
<div class="panel-body">
<div class="form-group">
<label class="col-xs-12 col-sm-3 col-md-2 control-label">首页类型选择</label>
<div class="col-sm-8 col-xs-12">
<label class="radio-inline"><input type="radio" name="ischeck" value="1" {if $theone['ischeck'] == 1} checked="checked"{/if} /> 普通商城首页</label>
<label class="radio-inline"><input type="radio" name="ischeck" value="0" {if $theone['ischeck'] == 0} checked="checked"{/if} /> 单页面首页</label>
<label class="radio-inline"><input type="radio" name="ischeck" value="2" {if $theone['ischeck'] == 2} checked="checked"{/if} /> 店中店模式</label>
<div class="help-block">如果选择普通商城,下方内容就是首页自定义区显示内容,如果选择单页面,那下方内容显示就是单页面内容!</div>
</div>
</div>
<div class="form-group">
<label class="col-xs-12 col-sm-3 col-md-2 control-label">单页面和首页自定义区</label>
<div class="col-sm-9 col-xs-12">
{php echo tpl_ueditor('terms', $theone['terms']);}
<div class="help-block">单页面首页和首页自定义区域显示的内容,支持HTML代码!</div>
</div>
</div>
<div class="help-block">
<input name="submit" type="submit" value="提交" class="btn btn-primary">
<input type="hidden" name="token" value="{$_W['token']}" />
</div>
</div>
</div>
</form>
</div>
{template 'common/footer'}