songxingwei 2 年之前
父節點
當前提交
d58ee0f1e6
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      application/store/controller/Goods.php

+ 3 - 1
application/store/controller/Goods.php

@@ -128,12 +128,14 @@ class Goods extends Controller
             if (isset($data['id'])){
                 $buy_count = Db::name('store_order_info')
                     ->whereIn('status','1,2')
-                    ->where('c_id',$data['id'])->count();
+                    ->where('c_id',$data['id'])
+                    ->count();
             }else{
                 $buy_count = 0;
             }
 
             $data['now_inventory'] = $data['inventory']-$buy_count;
+            dump($data);die;
         }else{
             if (!empty($data)){
                 $data['covers'] = $data['cover'];