attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->list()); } //分销商等级修改 public function actionShareLevelSave() { $form = new ShareLevelFrom(); $form->attributes = post_params(); $form->store_id = get_store_id(); return $this->asJson($form->setShareLevel()); } //分销商等级状态修改 public function actionShareLevelStatus() { $form = new ShareLevelFrom(); $form->attributes = post_params(); $form->store_id = get_store_id(); return $this->asJson($form->setStatus()); } }