// // RQHTTPService+RQGetMenuInfo.m // jiaPei // // Created by 张嵘 on 2022/4/28. // Copyright © 2022 JCZ. All rights reserved. // #import "RQHTTPService+RQGetMenuInfo.h" @implementation RQHTTPService (RQGetMenuInfo) - (RACSignal *)getMenuInfo { /// 1. 配置参数 RQKeyedSubscript *subscript = [RQKeyedSubscript subscript]; subscript[@"stuOutId"] = RQStringIsNotEmpty(RQ_USER_MANAGER.currentUser.outId)? RQ_USER_MANAGER.currentUser.outId : @""; /// 2. 配置参数模型 RQURLParameters *paramters = [RQURLParameters urlParametersWithMethod:RQ_HTTTP_METHOD_POST path:RQ_POST_GetMenuInfo parameters:subscript.dictionary]; /// 3.发起请求 return [[[RQHTTPRequest requestWithParameters:paramters] enqueueResultClass:[RQMenuInfoModel class]] rq_parsedResults]; } /// student/getMenuInfo /// * HTTP方法:POST /// * 报文格式:{'stuOutId':'3502004042'} /// 返回字典数组 /// { /// body = [ /// { /// MENU_URL = https://p.pinduoduo.com/otrFYWZC, /// MENU_NAME = 话费充值, /// MENU_ICON = https://image.jppt.com.cn/appimg/sjcz.png, /// MENU_TYPE = 1, /// MENU_REMARK = 100元立减8 /// }, /// { /// MENU_URL = https://sqxh.zzxcx.net/, /// MENU_NAME = 淘宝特价, /// MENU_ICON = https://image.jppt.com.cn/appimg/taobao.png, /// MENU_TYPE = 1, /// MENU_REMARK = 优惠多多 /// } /// ], /// code = 0, /// other = , /// msg = 操作成功 /// } /// MENU_URL(H5的链接或小程序的username); /// MENU_NAME(标题); /// MENU_ICON(图标地址); /// MENU_TYPE (类型 1:H5;2:小程序); /// MENU_REMARK(副标题); @end