Commit 4714e44b authored by pengfei's avatar pengfei

update 团长分销-添加自提点返回值

parent 6561f19f
...@@ -128,15 +128,16 @@ class ColonelController extends Base ...@@ -128,15 +128,16 @@ class ColonelController extends Base
/** /**
* Notes: 管理后台 - 添加自提点信息 * Notes: 管理后台 - 添加自提点信息
* User: pengfei@yidian-inc.com * User: pengfei@yidian-inc.com
* Date: 2021/8/24 2:44 下午 * Date: 2021/8/25 2:52 下午
* @throws \App\Exception\custom\MarketingException * @throws \App\Exception\custom\MarketingException
* @throws \App\Exception\custom\ParamException
*/ */
public function manage_add_apply_pointAction() public function manage_add_apply_pointAction()
{ {
$params = $this->params; $params = $this->params;
(new ColonelAddPoint())->validate(); (new ColonelAddPoint())->validate();
ColonelService::handleAddTaskPlace($params); $takePlaceId = ColonelService::handleAddTaskPlace($params);
return $this->success(); return $this->success(['result' => ['take_place_id' => $takePlaceId]]);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment