wupengfei 2 yıl önce
ebeveyn
işleme
b533dc4810

+ 2 - 2
.idea/workspace.xml

@@ -3,7 +3,7 @@
   <component name="ChangeListManager">
     <list default="true" id="a760c6e5-d38f-48d9-be27-0f7a4f48e29f" name="Default Changelist" comment="">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/application/store/view/collect_info/index_search.html" beforeDir="false" afterPath="$PROJECT_DIR$/application/store/view/collect_info/index_search.html" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/application/store/controller/CollectInfo.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/store/controller/CollectInfo.php" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -149,7 +149,7 @@
       <workItem from="1661820079823" duration="2898000" />
       <workItem from="1661907611720" duration="5931000" />
       <workItem from="1661993135050" duration="4377000" />
-      <workItem from="1662078426211" duration="3566000" />
+      <workItem from="1662078426211" duration="3629000" />
     </task>
     <servers />
   </component>

+ 2 - 3
application/store/controller/CollectInfo.php

@@ -151,10 +151,9 @@ class CollectInfo extends Controller
     {
         $list = Db::name('store_order_info')
             ->alias('i')
-            ->field('count(i.id) num,i.name,i.uid,u.phone,u.name user_name')
+            ->field('count(i.id) num,i.name,i.mid,u.phone,u.name user_name')
             ->join('store_member u','u.id = i.mid','left')
-            ->group('i.uid')
-            ->order('num desc')
+            ->group('i.mid')
             ->order('num desc')->select();
         $export = [];
         foreach ($list as $value){