chenhao 4 rokov pred
rodič
commit
7eb9aa8aa1

+ 1 - 0
application/admin/controller/Uuser.php

@@ -39,6 +39,7 @@ class Uuser extends Controller
 
         $where['level'] = $level;
         $this->title = '系统用户管理';
+        $this->level = $level;
         $query = $this->_query($this->table)->where($where)->like('username,mobile')->equal('is_deleted');
         $query->dateBetween('login_at,create_at')->where($where)->order('id desc')->page();
     }

+ 7 - 0
application/admin/view/uuser/index.html

@@ -27,7 +27,11 @@
             <th class='text-left nowrap'>联系手机</th>
             <th class='text-left nowrap'>身份</th>
             <th class='text-left nowrap'>积分</th>
+            {if $level==0}
+            <th class='text-left nowrap'>住址</th>
+            {/if}
             <th class='text-left nowrap'>备注</th>
+
             <th class='text-left nowrap'>创建时间</th>
 <!--            <th class='text-left nowrap'>状态</th>-->
             <th class='text-left nowrap'></th>
@@ -45,6 +49,9 @@
             <td class='text-left nowrap'>{$vo.mobile|default=0}</td>
             <td class='text-left nowrap'>{$vo.level}</td>
             <td class='text-left nowrap'>{$vo.integral}</td>
+            {if $level==0}
+            <td class='text-left nowrap'>{$vo.address}</td>
+            {/if}
             <td width="200" style="word-break:break-all;" >{$vo.content|raw}</td>
             <td class='text-left nowrap'>{$vo.create_time}</td>
 <!--            <td class='text-left nowrap'>{eq name='vo.is_deleted' value='2'}<span class="color-red">已禁用</span>{else}<span class="color-green">使用中</span>{/eq}</td>-->