attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->list()); } /** *分红详情 */ public function actionDetail() { $form = new TeamPoolForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->detail()); } /** *分红发放 */ public function actionSend() { $form = new TeamPoolForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->send()); } }