attributes = post_params(); $form->store_id = get_store_id(); $this->asJson($form->userAuditSetting()); } //用户审核列表 public function actionUserAuditList() { $form = new UserAuditForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); $this->asJson($form->userAuditList()); } //用户审核拒绝/同意/删除 public function actionUserAuditStatus() { $form = new UserAuditForm(); $form->attributes = post_params(); $form->store_id = get_store_id(); $this->asJson($form->userAuditStatus()); } public function actionGetretaillist() { $page_context = input_params('page_context'); $pageSize = input_params('limit', 5); $this->asJson(\app\utils\Wechat\B2b\B2bPay::getretailopenidlist(get_store_id(), all_params(), $page_context, $pageSize)); } }