|
|
@@ -1,30 +1,30 @@
|
|
|
+import websocket from './websocket'
|
|
|
import account from './account'
|
|
|
+import allinpay from './allinpay'
|
|
|
import pay from './pay'
|
|
|
-import websocket from './websocket'
|
|
|
-import tms from './tms'
|
|
|
import message from './message'
|
|
|
-import allinpay from './allinpay'
|
|
|
-import user from './user'
|
|
|
+import tms from './tms'
|
|
|
import settle from './settle'
|
|
|
+import user from './user'
|
|
|
import strategy from './strategy'
|
|
|
|
|
|
export default {
|
|
|
+ /** websocket打印中心 */
|
|
|
+ websocket,
|
|
|
/** 账户中心 */
|
|
|
account,
|
|
|
+ /** 通联支付 */
|
|
|
+ allinpay,
|
|
|
/** 支付中心 */
|
|
|
pay,
|
|
|
- /** websocket打印中心 */
|
|
|
- websocket,
|
|
|
- /** 运力中心 */
|
|
|
- tms,
|
|
|
/** 消息中心 */
|
|
|
message,
|
|
|
- /** 通联支付 */
|
|
|
- allinpay,
|
|
|
- /** 用户中心 */
|
|
|
- user,
|
|
|
+ /** 运力中心 */
|
|
|
+ tms,
|
|
|
/** 结算中心 */
|
|
|
settle,
|
|
|
+ /** 用户中心 */
|
|
|
+ user,
|
|
|
/** 运营策略中心 */
|
|
|
strategy,
|
|
|
}
|