后台内容模块功能完善
This commit is contained in:
5
app/http/form/template/bind.html
Normal file
5
app/http/form/template/bind.html
Normal file
@@ -0,0 +1,5 @@
|
||||
<select class="form-control" name="{$name}" id="{$name}" style="width:auto;">
|
||||
{volist name="option" id="item"}
|
||||
<option value="{$item['key']}" {if $item['key'] == $value}selected{/if}>{$item['label']}</option>
|
||||
{/volist}
|
||||
</select>
|
||||
0
app/http/form/template/bool.html
Normal file
0
app/http/form/template/bool.html
Normal file
0
app/http/form/template/datetime.html
Normal file
0
app/http/form/template/datetime.html
Normal file
@@ -18,7 +18,7 @@
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
<div class="filebox image">
|
||||
<img src="{:config('base_url')}{$images['path']}" class="img-responsive">
|
||||
<img src="{:config('config.base_url')}{$images['path']}" class="img-responsive">
|
||||
</div>
|
||||
</li>
|
||||
{/if}
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
<div class="filebox image">
|
||||
<img src="{:config('base_url')}{$images['path']}" class="img-responsive">
|
||||
<img src="{:config('config.base_url')}{$images['path']}" class="img-responsive">
|
||||
</div>
|
||||
</li>
|
||||
{/if}
|
||||
|
||||
1
app/http/form/template/num.html
Normal file
1
app/http/form/template/num.html
Normal file
@@ -0,0 +1 @@
|
||||
<input type="text" class="form-control" name="{$name}" id="{$name}" autocomplete="false" value="{$value}" style="width: 120px">
|
||||
Reference in New Issue
Block a user