attributes = get_params(); return $this->asJson($form->storeDividendsPool()); } /** * 让利明细 */ public function actionStoreDividendsDetail() { $form = new IndexForm(); $form->attributes = get_params(); return $this->asJson($form->storeDividendsDetail()); } /** * 分红记录 */ public function actionStoreDividendsRecord() { $form = new IndexForm(); $form->attributes = get_params(); return $this->asJson($form->storeDividendsRecord()); } /** * 执行分红 */ public function actionStoreDividendsSend() { $form = new IndexForm(); $form->attributes = post_params(); return $this->asJson($form->storeDividendsSend()); } /** * 分红明细 */ public function actionStoreDividendsDetailList() { $form = new IndexForm(); $form->attributes = get_params(); return $this->asJson($form->storeDividendsDetailList()); } }