attributes = get_params(); $this->asJson($form->list()); } //运营人员保存 public function actionSave() { $form = new StoreOperationsForm(); $form->attributes = post_params(); $this->asJson($form->save()); } //运营人员保存 public function actionSetStatus() { $form = new StoreOperationsForm(); $form->attributes = get_params(); $this->asJson($form->setStatus()); } }