diff --git a/app/api/controller/IndexController.php b/app/api/controller/IndexController.php index 96ec6367..f4ce5113 100644 --- a/app/api/controller/IndexController.php +++ b/app/api/controller/IndexController.php @@ -838,4 +838,22 @@ class IndexController extends BaseApiController return $this->success('添加成功'); } + + public function getVillagerInfo() + { + $shopUserId = $this->request->get('shop_user_id'); + $detail = Db::name('villager_information')->where('shop_user_id', $shopUserId)->findOrEmpty(); + return $this->success('成功', $detail); + } + public function editVillagerInfo() + { + $params = $this->request->post(); + $params['house_rent_info'] = json_encode($params['house_rent_info']); + $params['land_rent_info'] = json_encode($params['land_rent_info']); + $params['product_info'] = json_encode($params['product_info']); + $params['idle_asset_rent_info'] = json_encode($params['idle_asset_rent_info']); + $params['house_decoration_construction'] = json_encode($params['house_decoration_construction']); + Db::name('villager_information')->where('shop_user_id', $params['shop_user_id'])->update($params); + return $this->success('更新成功'); + } }