moonsflyer 3 months ago
parent
commit
e30c591e54
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/shopapi/logic/UserAddressLogic.php

+ 1 - 1
app/shopapi/logic/UserAddressLogic.php

@@ -227,7 +227,7 @@ class UserAddressLogic extends BaseLogic
 	}
     public static function getSpecialAreaInfo($id){
         $where[]=['id','=',$id];
-        $info  = SpecialArea::where($where)->findOrEmpty();
+        $info  = SpecialArea::where($where)->find()->toArray();
         return $info;
     }