123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- /**
- * route.php UTF-8
- * 小程序接口文档
- *
- * @date : 2018/8/14 10:43
- *
- * @license 这不是一个自由软件,未经授权不许任何使用和传播。
- * @author : wuyonghong <wyh@huosdk.com>
- * @version : HuoMp 1.0
- */
- return [
- /* 玩家 */
- 'mp/wx/login$' => 'api/Oauth/callbackWeixin',/* 玩家微信登录 */
- 'mp/wx/updateinfo$' => 'api/Oauth/upMemInfo',/* 更新玩家信息 */
- 'mp/wx/getuserinfo$' => 'api/Oauth/getMemInfo',/* 获取玩家信息 */
- 'mem/getnoviceaward' => 'api/Oauth/getNoviceAward',/* 获取新手奖励 */
- /* 游戏 */
- 'game/start$' => 'api/App/gameOpen',/* 打开游戏--开始计时 */
- 'game/open$' => 'api/App/startup',/* 打开游戏--领取奖励 */
- 'game/list$' => 'api/Game/index',/* 游戏列表 */
- 'game/slide/list$' => 'api/Game/slideList',/* 游戏轮播列表 */
- 'game/detail' => 'api/Game/read', /* 游戏详情页 */
- //'mem/game/list$' => 'api/MemGame/index',/* 玩家游戏列表--推广游戏 */
- 'mem/game/list$' => 'api/Game/getRpList',/* 试玩红包列表--2018-10-16 修改 */
- 'mem/game/add$' => 'api/MemGame/add',/* 玩家添加游戏 */
- 'mem/game/cancel$' => 'api/MemGame/cancel',/* 玩家取消游戏 */
- 'mem/game/playlist$' => 'api/MemGame/playList',/* 我玩过的游戏列表 */
- /* 评论 */
- 'game/comment/list$' => 'api/Comment/getList',/* 游戏评论列表 */
- 'game/comment/mylist$' => 'api/Comment/myList',/* 我的游戏评论列表 */
- 'game/comment/add$' => 'api/Comment/add',/* 添加评论 */
- /* 财务 */
- 'financial/income/list$' => 'api/Financial/incomeList',/* 收益列表 */
- 'financial/income/rank/list$' => 'api/Financial/incomeRankList',/* 收益排行榜 */
- 'financial/withdraw/info$' => 'api/Financial/getWithdrawInfo',/* 提现配置信息 */
- 'financial/withdraw$' => 'api/Financial/withdraw',/* 申请提现 */
- 'financial/withdraw/list$' => 'api/Financial/withdrawList',/* 提现列表 */
- /* 主页 */
- 'home/comment/index$' => 'api/Homepage/commentInfo',/* 我的首页-评论与客服 */
- 'homepage/info$' => 'api/Homepage/info',/* 玩家主页信息 */
- 'homepage/update$' => 'api/Homepage/update',/* 修改玩家主页 */
- 'homepage/background/list$' => 'api/Homepage/backgroundList',/* 背景列表 */
- 'homepage/visitor/list$' => 'api/Homepage/visitorList',/* 最近访问主页的人 */
- 'bgimg/update$' => 'api/Homepage/updateBgImg',/* 修改背景图 */
- /* 团队 */
- 'team/mem/list$' => 'api/Team/MemList',/* 团队成员列表 */
- 'team/mem/income/list$' => 'api/Team/memIncomeList',/* 查看成员收入列表 */
- 'team/income/rank/list$' => 'api/Team/incomeRankList',/* 成员收入列表 */
- /* 帮助中心 */
- 'help/fqa/list$' => 'api/Help/fqaList',/* 帮助中心-常见问题 */
- 'help/withdraw/tips$' => 'api/Help/withdrawTips',/* 提现说明 */
- 'help/makemoney/tips$' => 'api/Help/makeMoneyTips',/* 赚钱小技巧 */
- /* 新增 */
- 'play/index$' => 'api/Home/playIndex',/* 盒子首页 */
- 'tag/game/list$' => 'api/Game/getTagIndex',/* 单栏目游戏列表 */
- 'find/game/list$' => 'api/Game/getFindList',/* 发现游戏列表 */
- 'rp/game/list$' => 'api/Game/getRpList', /* 试玩领红包游戏列表 */
- 'share/income/rank$' => 'api/Income/getRankIndex',/* 分享收益排行 */
- 'sign/income/add$' => 'api/Income/getSignMoney',/* 领取签到奖励 */
- 'share/income/get$' => 'api/Income/getShareMoney',/* 领取分享奖励 */
- 'play/income/get$' => 'api/Income/getPlayMoney',/* 领取试玩奖励 */
- 'game/income/get$' => 'api/Income/getGameMoney',/* 领取游戏奖励 */
- 'share/game/detail$' => 'api/Share/index',/* 游戏分享落地页 */
- 'favorite/reward/get$' => 'api/Income/getFavorite',/* 安卓桌面打开小程序奖励 */
- 'mp/red/info$' => 'api/Oauth/getRedInfo',/* 红包上展示的小程序信息1026 */
- 'mp/startup$' => 'api/Home/startup',/* 盒子启动闪屏图926 */
- 'player/game/list$' => 'api/Game/getPlayerList',/* 一起开黑 */
- /* 抽奖 */
- 'lottery/detail' => 'api/Lottery/index', /* 积分抽奖页面数据 */
- 'lottery/draw' => 'api/Lottery/draw', /* 积分抽奖 */
- ];
|