1 Star 0 Fork 1

phubing/nanxun-front-end

forked from wmm387/nanxun-front-end 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.roadhogrc.mock.js 2.65 KB
一键复制 编辑 原始数据 按行查看 历史
wmm387 提交于 2018-10-25 22:01 . 添加小程序模板消息页面相关
import { format, delay } from 'roadhog-api-doc';
// 是否禁用代理
const noProxy = process.env.NO_PROXY === 'true';
// 代码中会兼容本地 service mock 以及部署站点的静态数据
const proxy = {
// 支持值为 Object 和 Array
'GET /api/currentUser': {
$desc: '获取当前用户接口',
$params: {
pageSize: {
desc: '分页',
exp: 2,
},
},
$body: {
name: 'Serati Ma',
userid: '00000001',
},
},
'POST /login': 'http://wechat.nanxuncn.com/api/login/login',
'POST /api/register': (req, res) => {
res.send({ status: 'ok', currentAuthority: 'user' });
},
'GET /api/500': (req, res) => {
res.status(500).send({
timestamp: 1513932555104,
status: 500,
error: 'error',
message: 'error',
path: '/base/category/list',
});
},
'GET /api/404': (req, res) => {
res.status(404).send({
timestamp: 1513932643431,
status: 404,
error: 'Not Found',
message: 'No message available',
path: '/base/category/list/2121212',
});
},
'GET /api/403': (req, res) => {
res.status(403).send({
timestamp: 1513932555104,
status: 403,
error: 'Unauthorized',
message: 'Unauthorized',
path: '/base/category/list',
});
},
'GET /api/401': (req, res) => {
res.status(401).send({
timestamp: 1513932555104,
status: 401,
error: 'Unauthorized',
message: 'Unauthorized',
path: '/base/category/list',
});
},
// GET 账号相关接口
'GET /api/accounts/(.*)': 'http://wechat.nanxuncn.com/api/accounts',
// POST 账号相关接口
'POST /api/accounts/(.*)': 'http://wechat.nanxuncn.com/api/accounts',
// GET 模板消息相关接口
'GET /api/templates/(.*)': 'http://wechat.nanxuncn.com/api/templates',
// POST 模板消息相关接口
'POST /api/templates/(.*)': 'http://wechat.nanxuncn.com/api/templates',
// GET 任务相关接口
'GET /api/task/(.*)': 'http://wechat.nanxuncn.com/api/task',
// GET 微信第三方平台接口
'GET /wechat/index/(.*)': 'http://wx.nanxuncn.cn/wechat/index',
'GET /wechat/customer/(.*)': 'http://wx.nanxuncn.cn/wechat/customer',
'GET /wechat/task/(.*)': 'http://wx.nanxuncn.cn/wechat/task',
// POST 微信第三方平台接口
'POST /wechat/index/(.*)': 'http://wx.nanxuncn.cn/wechat/index',
'POST /wechat/customer/(.*)': 'http://wx.nanxuncn.cn/wechat/customer',
// GET 小程序先相关接口
'GET /api/sendtmp/(.*)': 'https://xcx.nanxuncn.cn/api/sendtmp/',
// POST 小程序先相关接口
'POST /api/sendtmp/(.*)': 'https://xcx.nanxuncn.cn/api/sendtmp/',
};
export default (noProxy ? {} : delay(proxy, 1000));
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/phubing/nanxun-front-end.git
[email protected]:phubing/nanxun-front-end.git
phubing
nanxun-front-end
nanxun-front-end
master

搜索帮助