wupengfei преди 2 години
родител
ревизия
9a2e554fa5
променени са 2 файла, в които са добавени 8 реда и са изтрити 5 реда
  1. 6 3
      application/mall/controller/Shop.php
  2. 2 2
      application/mall/view/shop/index.html

+ 6 - 3
application/mall/controller/Shop.php

@@ -31,9 +31,12 @@ class Shop extends Controller
     public function index()
     {
         $this->title = '列表';
-        $query = $this->_query($this->table)->where('is_deleted',0);
-        $query->like('name');
-        $query->order(' sort desc , id desc')->page();
+        $query = $this->_query($this->table)
+            ->alias('s')
+            ->field('s.*,m.name user_name ,m.headimg')
+            ->where('s.is_deleted',0)
+            ->leftJoin('store_member m','m.id = s.user_id');
+        $query->order(' s.sort desc , s.id desc')->page();
     }
 
     /**

+ 2 - 2
application/mall/view/shop/index.html

@@ -26,8 +26,8 @@
             <td class='text-left nowrap'>
                 <img data-tips-image style="width:50px;height:50px" src="{$vo.headimg|default=''}" class="margin-right-5 text-top">
                 <div class="inline-block">
-                    用户ID:{$vo.id|default='--'}<br>
-                    用户昵称:{$vo.name|default='--'}
+                    用户ID:{$vo.user_id|default='--'}<br>
+                    用户昵称:{$vo.user_name|default='--'}
                 </div>
             </td>
             <td class='text-left nowrap'>{$vo.name|default=''}</td>