Browse Source

一些功能

Kirin 3 years ago
parent
commit
cccff4808e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/models/store/StoreExchange.php

+ 1 - 1
app/models/store/StoreExchange.php

@@ -73,7 +73,7 @@ class StoreExchange extends BaseModel
      * @param string $field
      * @return array
      */
-    public static function getListAll($offset = 0, $limit = 10, $field = 'id,product_id,image,title,price,integral,ot_price,start_time,stop_time,stock,sales')
+    public static function getListAll($offset = 0, $limit = 10, $field = 'id,product_id,image,title,price,ot_price,start_time,stop_time,stock,sales')
     {
         $model = self::where('is_del', 0)->where('status', 1)->where('stock', '>', 0)->field($field)
             ->order('sort DESC,add_time DESC');