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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
| export namespace LifeRechargeConstants {
| export enum LifePayRateTypeEnum {
| '默认话费折扣' = 10,
| '默认电费折扣' = 10,
| }
|
| export enum LifePayTypeEnum {
| WxPay = 10,
| AliPay = 20,
| }
|
| export enum LifePayOrderTypeEnum {
| 话费订单 = 10,
| 电费订单 = 20,
| }
|
| export enum LifePayStatusEnum {
| 未支付 = 10,
|
| 已支付 = 20,
|
| 待退款 = 30,
|
| 已退款 = 40,
| }
|
| export enum LifePayOrderStatusEnum {
| 待确认 = 10,
|
| 已失败 = 20,
|
| 已完成 = 30,
| }
|
| export enum IspCode {
| /**中国移动 */
| yidong = 'yidong',
| /**中国电信 */
| dianxin = 'dianxin',
| /**中国联通 */
| liantong = 'liantong',
| }
|
| export const IspCodeText = {
| [IspCode.yidong]: '中国移动',
| [IspCode.dianxin]: '中国电信',
| [IspCode.liantong]: '中国联通',
| };
| }
|
|