|
|
@@ -158,4 +158,14 @@ class UserAddressController extends BaseShopController
|
|
|
public function getSpecialAreaList(){
|
|
|
return $this->data(UserAddressLogic::getSpecialAreaLists());
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取指定地区配送费信息
|
|
|
+ *
|
|
|
+ * */
|
|
|
+ public function getSpecialAreaShipFeeInfo(){
|
|
|
+ $id = $this->request->get('district_id',0);
|
|
|
+ $lists = UserAddressLogic::getSpecialAreaInfo($id);
|
|
|
+ return $this->data($lists);
|
|
|
+ }
|
|
|
}
|