Browse Source

会员升级

Kirin 1 year ago
parent
commit
fc3c9d83bb
1 changed files with 2 additions and 1 deletions
  1. 2 1
      app/controller/admin/Common.php

+ 2 - 1
app/controller/admin/Common.php

@@ -367,6 +367,7 @@ class Common extends AuthController
     public function city(CityAreaServices $services)
     {
         $pid = $this->request->get('pid', 0);
-        return $this->success($services->getCityTreeList((int)$pid));
+        $type = $this->request->get('type', 0);
+        return $this->success($services->getCityTreeList((int)$pid, $type));
     }
 }