fix: 修复服务端导入 basePath 设置 bug

This commit is contained in:
苏文雄 2019-11-11 11:39:20 +08:00
parent 96fe7eea0a
commit 1b29578513
2 changed files with 5 additions and 2 deletions

View File

@ -82,7 +82,8 @@ async function handle(
await axios.post(projectApiPath, {
id: projectId,
basepath: info.basePath
basepath: info.basePath,
token
})
}

View File

@ -50,7 +50,8 @@ class baseController {
'/api/interface/getCatMenu',
'/api/interface/list_cat',
'/api/project/get',
'/api/plugin/export'
'/api/plugin/export',
'/api/project/up'
];
let params = Object.assign({}, ctx.query, ctx.request.body);
@ -58,6 +59,7 @@ class baseController {
// 如果前缀是 /api/open执行 parse token 逻辑
if (token && (openApiRouter.indexOf(ctx.path) > -1 || ctx.path.indexOf('/api/open/') === 0 )) {
let tokens = parseToken(token)
const oldTokenUid = '999999'