apis.js 394 Bytes
Newer Older
李星剑's avatar
李星剑 committed
1 2 3 4 5
/**
 * 接口列表文件
 */
import user from './apiList/user.js'
import auth from './apiList/auth.js'
阮藤's avatar
阮藤 committed
6
import plm from './apiList/plm.js'
李星剑's avatar
李星剑 committed
7 8
import color from './apiList/colors.js'
import orderTicket from './apiList/orderTicket.js'
李星剑's avatar
李星剑 committed
9 10 11 12 13
// import goods from './apiList/goods.js'
// import base from './apiList/base.js'

export default {
  ...user,
阮藤's avatar
阮藤 committed
14
  ...auth,
李星剑's avatar
李星剑 committed
15 16
  ...color,
  ...orderTicket,
阮藤's avatar
阮藤 committed
17
  ...plm
李星剑's avatar
李星剑 committed
18
};