account.detail.data.ts
844 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
38
39
40
41
import { DescItem } from '/@/components/Description';
import { useI18n } from '/@/hooks/web/useI18n';
const { t } = useI18n();
export const accountSchema: DescItem[] = [
{
field: 'realName',
label: t('system.account.username'),
},
{
field: 'phoneNumber',
label: t('system.account.phoneNumber'),
},
{
field: 'email',
label: t('system.account.email'),
},
{
field: 'username',
label: t('system.account.detail.accountNumber'),
},
{
field: 'enabled',
label: t('system.account.state'),
},
{
field: 'accountExpireTime',
label: t('system.account.detail.period'),
},
{
field: 'createTime',
label: t('common.createTimeText'),
},
{
field: 'updateTime',
label: t('common.updateTimeText'),
},
{
field: 'remark',
label: t('common.remarkText'),
},
];