fix: fund导出服务的错误

This commit is contained in:
chaosBreaking
2019-09-07 12:06:07 +08:00
parent 54674dd060
commit e75fdb73d9

View File

@@ -54,6 +54,6 @@ const services = [
module.exports = services.map(service => {
// 可以在此处对要导出的服务map进行统一处理
service.url = service.indexRoute ? service.indexRoute : indexRoute + service.url;
service.url = service.indexRoute ? service.indexRoute + service.url : indexRoute + service.url;
return service;
});