attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->amountList()); } //帮扶冻结佣金列表 public function actionFreezeAmountList() { $form = new SupportForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->freezeAmountList()); } //上级变动记录 public function actionParentSupportLog() { $form = new SupportForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->parentSupportLog()); } }