attributes = get_params(); return $this->asJson($form->getList()); } //保存骑手标签 public function actionSaveTag() { $form = new LocalDeliveryCourierTagForm(); $form->attributes = post_params(); return $this->asJson($form->saveTag()); } //设置骑手标签 public function actionSetStatus() { $form = new LocalDeliveryCourierTagForm(); $form->attributes = get_params(); return $this->asJson($form->setStatus()); } }