attributes = post_params(); return $this->asJson($form->setMenuConfig()); } /** * 获取 */ public function actionGetMenuList() { $form = new WechatMenuConfigForm(); $form->attributes = get_params(); return $this->asJson($form->getMenuList()); } /** * 删除 */ public function actionDelMenu() { $form = new WechatMenuConfigForm(); $form->attributes = get_params(); return $this->asJson($form->delMenu()); } /** * 获取 */ public function actionGetMenuInfo() { $form = new WechatMenuConfigForm(); $form->attributes = get_params(); return $this->asJson($form->getMenuInfo()); } }