Commit ac5d27ba by 冷斌

fix bug

parent 4f41eec6
...@@ -13,8 +13,8 @@ ...@@ -13,8 +13,8 @@
<th>等级</th> <th>等级</th>
<th>等级名称</th> <th>等级名称</th>
<th>等级经验上限</th> <th>等级经验上限</th>
<!-- <th>昵称颜色</th>--> <!-- <th>昵称颜色</th>
<th>图标</th> <th>图标</th>-->
<th>头像角标</th> <th>头像角标</th>
<th>发布时间</th> <th>发布时间</th>
...@@ -27,8 +27,8 @@ ...@@ -27,8 +27,8 @@
<td>{$vo['levelid']}</td> <td>{$vo['levelid']}</td>
<td>{$vo['levelname']}</td> <td>{$vo['levelname']}</td>
<td>{$vo['level_up']}</td> <td>{$vo['level_up']}</td>
<!-- <td><input style="width:50px;height:20px;background:#{$vo['colour']};" disabled/></td>--> <!-- <td><input style="width:50px;height:20px;background:#{$vo['colour']};" disabled/></td>
<td><img src="{$vo['thumb']}" style="height:24px"></td> <td><img src="{$vo['thumb']}" style="height:24px"></td>-->
<td><img src="{$vo['thumb_mark']}" style="height:24px"></td> <td><img src="{$vo['thumb_mark']}" style="height:24px"></td>
<td>{$vo.addtime|date="Y-m-d H:i:s",###}</td> <td>{$vo.addtime|date="Y-m-d H:i:s",###}</td>
......
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
<span class="form-required">*</span> <span class="form-required">*</span>
</div> </div>
</div> </div>
<!--
<div class="control-group"> <div class="control-group">
<label class="control-label">图标</label> <label class="control-label">图标</label>
<div class="controls"> <div class="controls">
...@@ -41,7 +42,7 @@ ...@@ -41,7 +42,7 @@
<span class="form-required">*</span> <span class="form-required">*</span>
</div> </div>
</div> </div>
-->
<div class="control-group"> <div class="control-group">
<label class="control-label">头像角标</label> <label class="control-label">头像角标</label>
<div class="controls"> <div class="controls">
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
<span class="form-required">*</span> <span class="form-required">*</span>
</div> </div>
</div> </div>
<!--
<div class="control-group"> <div class="control-group">
<label class="control-label">图标</label> <label class="control-label">图标</label>
<div class="controls"> <div class="controls">
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
<span class="form-required">*</span> <span class="form-required">*</span>
</div> </div>
</div> </div>
-->
<div class="control-group"> <div class="control-group">
<label class="control-label">头像角标</label> <label class="control-label">头像角标</label>
<div class="controls"> <div class="controls">
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<th>等级</th> <th>等级</th>
<th>等级名称</th> <th>等级名称</th>
<th>等级经验上限</th> <th>等级经验上限</th>
<th>图标</th> <!-- <th>图标</th> -->
<th>头像角标</th> <th>头像角标</th>
<th>发布时间</th> <th>发布时间</th>
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
<td>{$vo['levelid']}</td> <td>{$vo['levelid']}</td>
<td>{$vo['levelname']}</td> <td>{$vo['levelname']}</td>
<td>{$vo['level_up']}</td> <td>{$vo['level_up']}</td>
<td><img src="{$vo['thumb']}" style="height:24px"></td> <!-- <td><img src="{$vo['thumb']}" style="height:24px"></td> -->
<td><img src="{$vo['thumb_mark']}" style="height:24px"></td> <td><img src="{$vo['thumb_mark']}" style="height:24px"></td>
<td>{$vo.addtime|date="Y-m-d H:i:s",###}</td> <td>{$vo.addtime|date="Y-m-d H:i:s",###}</td>
......
...@@ -105,7 +105,7 @@ class LevelController extends AdminbaseController { ...@@ -105,7 +105,7 @@ class LevelController extends AdminbaseController {
$level_up=I('level_up'); $level_up=I('level_up');
$colour=I('colour'); $colour=I('colour');
$thumb=I('thumb'); $thumb=I('thumb');
$thumb_mark=I('thumb_mark'); $thumb = $thumb_mark=I('thumb_mark');
if($level_up==''){ if($level_up==''){
$this->error('请填写等级经验上限'); $this->error('请填写等级经验上限');
} }
...@@ -163,7 +163,7 @@ class LevelController extends AdminbaseController { ...@@ -163,7 +163,7 @@ class LevelController extends AdminbaseController {
$level_up=I('level_up'); $level_up=I('level_up');
$colour=I('colour'); $colour=I('colour');
$thumb=I('thumb'); $thumb=I('thumb');
$thumb_mark=I('thumb_mark'); $thumb = $thumb_mark=I('thumb_mark');
if($level_up==''){ if($level_up==''){
$this->error('请填写等级经验上限'); $this->error('请填写等级经验上限');
} }
......
...@@ -62,7 +62,7 @@ class LevelanchorController extends AdminbaseController { ...@@ -62,7 +62,7 @@ class LevelanchorController extends AdminbaseController {
$level_up=I('level_up'); $level_up=I('level_up');
$thumb=I('thumb'); $thumb=I('thumb');
$thumb_mark=I('thumb_mark'); $thumb = $thumb_mark=I('thumb_mark');
if($level_up==''){ if($level_up==''){
$this->error('请填写等级经验上限'); $this->error('请填写等级经验上限');
} }
...@@ -116,7 +116,7 @@ class LevelanchorController extends AdminbaseController { ...@@ -116,7 +116,7 @@ class LevelanchorController extends AdminbaseController {
$level_up=I('level_up'); $level_up=I('level_up');
$thumb=I('thumb'); $thumb=I('thumb');
$thumb_mark=I('thumb_mark'); $thumb = $thumb_mark=I('thumb_mark');
if($level_up==''){ if($level_up==''){
$this->error('请填写等级经验上限'); $this->error('请填写等级经验上限');
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment