Browse Source

发货记录

afa 5 months ago
parent
commit
100ee8efbc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/api/controller/Shops.php

+ 1 - 1
app/api/controller/Shops.php

@@ -63,7 +63,7 @@ class Shops extends Base
                 ->leftjoin('shop_list b', 'a.shop_id = b.id') //店铺
                 ->leftjoin('stock_config c', 'a.variety_id = c.id') //品种
                 ->leftjoin('product_config d', 'a.spec_id = d.id') //规格
-                ->field('a.id,a.num, b.name shop_name,c.title variety_name,d.title spec_name')
+                ->field('a.id,a.shop_id,a.createtime,a.num, b.name shop_name,c.title variety_name,d.title spec_name')
                 ->where($where)
                 ->paginate(15);
         $this->success('ok', $result);