diff --git a/application/index/model/Goods.php b/application/index/model/Goods.php
index d387ab0..d5bb3a5 100644
--- a/application/index/model/Goods.php
+++ b/application/index/model/Goods.php
@@ -66,7 +66,8 @@ class Goods extends Model
             ->join('sto_goodstype t','t.id = g.goodstype_id')
             ->join('sto_store s','s.id = g.store_id')
             ->where($where)
-            ->find(false);
+            ->fetchSql()
+            ->find();
         dump($data);exit;
         $storeModel = new Store();
         $store = $storeModel->findData(['id'=>$data['store_id']]);