Jelajahi Sumber

个人支付无优惠

chenlei 1 tahun lalu
induk
melakukan
ac0f99d696
1 mengubah file dengan 12 tambahan dan 12 penghapusan
  1. 12 12
      src/utils/config/interFaces/index.ts

+ 12 - 12
src/utils/config/interFaces/index.ts

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