代码拉取完成,页面将自动刷新
同步操作将从 wmm387/nanxun-front-end 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
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));
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。