[FIX]【自助入司流程优化】配置mock

This commit is contained in:
yuweiqi
2020-05-11 13:17:43 +08:00
parent c93dc42028
commit 0c4b01687b
2 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
//自助入司
let mockBaseUrl = 'http://mock-api.com/LwnaDLg1.mock'
export default {
// 查询签署协议信息
'/agent/agreement/query': mockBaseUrl + '/agent/agreement/query'
}

View File

@@ -13,6 +13,7 @@ import common from './common'
import survey from './survey'
import manpower from './manpower'
import cardList from './cardList'
import agentEenter from './agentEenter'
const mockBaseUrl = 'http://rap2api.taobao.org/app/mock'
let baseObj = {
@@ -20,6 +21,6 @@ let baseObj = {
'/user/info': mockBaseUrl + '/223948/info',
'/user/logout': mockBaseUrl + '/223948/logout'
}
Object.assign(baseObj, proposal, sale, customer, my, product, serve, common, cardList, survey, manpower)
Object.assign(baseObj, proposal, sale, customer, my, product, serve, common, cardList, survey, agentEenter, manpower)
export default baseObj