1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  | export * from './img'; 
 |    
 |  export enum IspCode { 
 |    /**中国移动 */ 
 |    yidong = 'yidong', 
 |    /**中国电信 */ 
 |    dianxin = 'dianxin', 
 |    /**中国联通 */ 
 |    liantong = 'liantong', 
 |  } 
 |    
 |  export const IspCodeText = { 
 |    [IspCode.yidong]: '中国移动', 
 |    [IspCode.dianxin]: '中国电信', 
 |    [IspCode.liantong]: '中国联通', 
 |  }; 
 |    
 |  export enum OrderInputType { 
 |    /** 
 |     * 升序 
 |     */ 
 |    Asc, 
 |    /** 
 |     * 降序 
 |     */ 
 |    Desc, 
 |  } 
 |    
 |  export const CustomerServicePhone = '18968263725'; 
 |  export const CustomerServiceTips = `如充值过程中遇到问题,请联系客服 ${CustomerServicePhone}(周一到周五 9:00-17:30)`; 
 |  
  |