config.ts
512 Bytes
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
import type { EnumArrayItem } from "@/@type/module/basic"
// 缴费状态
export const statusData: EnumArrayItem[] = [
{
label: '未缴纳',
value: 0
},
{
label: '已缴纳',
value: 1
}
]
// 缴费方式
export const payData: EnumArrayItem[] = [
{
label: '线上',
value: 0
},
{
label: '现金',
value: 1
}
]
// 确认状态
export const payStatus: EnumArrayItem[] = [
{
label: '未确认',
value: 0
},
{
label: '已确认',
value: 1
}
]