@@ -4432,11 +4432,14 @@ namespace App;
->fetchAll();
$shop_list = [];
foreach($rs as &$v){
- $shopwhere['uid'] = $v['uid'];
+ $shopwhere = [];
+ $shopwhere[]=['uid','=',$v['uid']];
+// $shopwhere['uid'] = $v['uid'];
if(!empty($province)){
- $shopwhere['province']=$province;
+// $shopwhere['province']=$province;
+ $shopwhere[]=['province','=',$province];
}
-
+
$shop_info=\PhalApi\DI()->notorm->shop_apply
->select('uid,name,thumb,username,sale_nums,service_points,province')
->where($shopwhere)