diff --git a/app/api/controller/product/ProductController.php b/app/api/controller/product/ProductController.php index c10aeace..804325ac 100644 --- a/app/api/controller/product/ProductController.php +++ b/app/api/controller/product/ProductController.php @@ -12,7 +12,7 @@ class ProductController extends BaseApiController{ */ public function lists(){ - return $this->dataLists(new ProductLists()); + return $this->dataLists(new ProductLists(),1); } /** diff --git a/app/api/lists/product/ProductLists.php b/app/api/lists/product/ProductLists.php index 43ae36cf..5cf03daa 100644 --- a/app/api/lists/product/ProductLists.php +++ b/app/api/lists/product/ProductLists.php @@ -88,7 +88,8 @@ class ProductLists extends BaseAdminDataLists implements ListsSearchInterface,Li } } if(!$found){ - $this->searchWhere[]=['store_id','=',5]; + $store_id = DictType::where('type','store')->value('remark')??5; + $this->searchWhere[]=['store_id','=',$store_id]; } $class_all=$this->request->get('class_all'); $where=[]; @@ -159,7 +160,8 @@ class ProductLists extends BaseAdminDataLists implements ListsSearchInterface,Li } } if(!$found){ - $this->searchWhere[]=['store_id','=',5]; + $store_id = DictType::where('type','store')->value('remark')??5; + $this->searchWhere[]=['store_id','=',$store_id]; } $class_all=$this->request->get('class_all'); $where=[]; diff --git a/app/common/controller/BaseLikeController.php b/app/common/controller/BaseLikeController.php index 8b020b6e..56a6b1fd 100644 --- a/app/common/controller/BaseLikeController.php +++ b/app/common/controller/BaseLikeController.php @@ -46,7 +46,7 @@ class BaseLikeController extends BaseController * @author 令狐冲 * @date 2021/7/8 00:40 */ - protected function dataLists(BaseDataLists $lists = null) + protected function dataLists(BaseDataLists $lists = null,$remark = 0) { //列表类和控制器一一对应,"app/应用/controller/控制器的方法" =》"app\应用\lists\"目录下 //(例如:"app/admin/controller/auth/AdminController.php的lists()方法" =》 "app/admin/lists/auth/AminLists.php") @@ -55,7 +55,7 @@ class BaseLikeController extends BaseController // $listName = str_replace('.', '\\', App::getNamespace() . '\\lists\\' . $this->request->controller() . ucwords($this->request->action())); // $lists = invoke($listName); } - return JsonService::dataLists($lists); + return JsonService::dataLists($lists,$remark); } diff --git a/app/common/service/JsonService.php b/app/common/service/JsonService.php index 7dbb069a..273eba12 100644 --- a/app/common/service/JsonService.php +++ b/app/common/service/JsonService.php @@ -4,10 +4,13 @@ namespace app\common\service; +use app\api\logic\store\StoreLogic; use app\common\enum\ExportEnum; use app\common\lists\BaseDataLists; use app\common\lists\ListsExcelInterface; use app\common\lists\ListsExtendInterface; +use app\common\model\dict\DictType; +use app\common\model\system_store\SystemStore; use support\Response; use support\exception\BusinessException; @@ -90,7 +93,7 @@ class JsonService * @author 令狐冲 * @date 2021/7/28 11:15 */ - public static function dataLists(BaseDataLists $lists) + public static function dataLists(BaseDataLists $lists,$remark) { //获取导出信息 if ($lists->export == ExportEnum::INFO && $lists instanceof ListsExcelInterface) { @@ -109,6 +112,12 @@ class JsonService 'page_no' => $lists->pageNo, 'page_size' => $lists->pageSize, ]; + $store_id = DictType::where('type','store')->value('remark')??5; + if($remark){ + $data['store'] = StoreLogic::search([ + 'id' => $store_id + ]); + } $data['extend'] = []; if ($lists instanceof ListsExtendInterface) { $data['extend'] = $lists->extend();