device.profile.data.ts
3.76 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
import { BasicColumn } from '/@/components/Table';
import { FormSchema } from '/@/components/Table';
import { findDictItemByCode } from '/@/api/system/dict';
import { MessageEnum } from '/@/enums/messageEnum';
import { getOrganizationList } from '/@/api/system/system';
import { copyTransFun } from '/@/utils/fnUtils';
export const columns: BasicColumn[] = [
{
title: '配置名称',
dataIndex: 'name',
width: 200,
},
{
title: '传输协议',
dataIndex: 'transportType',
width: 200,
},
{
title: '创建时间',
dataIndex: 'createTime',
width: 180,
},
{
title: '绑定规则链',
dataIndex: 'defaultRuleChainId',
width: 180,
},
{
title: '描述',
dataIndex: 'description',
width: 180,
},
];
export const searchFormSchema: FormSchema[] = [
{
field: 'organizationId',
label: '请选择组织',
component: 'ApiTreeSelect',
colProps: { span: 6 },
componentProps: {
api: async () => {
const data = await getOrganizationList();
copyTransFun(data as any as any[]);
return data;
},
},
},
{
field: 'name',
label: '配置名称',
component: 'Input',
colProps: { span: 8 },
},
];
export const isMessage = (type: string) => {
return type === MessageEnum.IS_SMS;
};
export const isEmail = (type: string) => {
return type === MessageEnum.IS_EMAIL;
};
export const formSchema: FormSchema[] = [
{
field: 'configName',
label: '配置名称',
required: true,
component: 'Input',
},
{
field: 'messageType',
label: '消息类型',
required: true,
component: 'ApiSelect',
componentProps: {
api: findDictItemByCode,
params: {
dictCode: 'message_type',
},
labelField: 'itemText',
valueField: 'itemValue',
},
},
{
field: 'platformType',
label: '平台类型',
required: true,
component: 'ApiSelect',
componentProps: {
api: findDictItemByCode,
params: {
dictCode: 'platform_type',
},
labelField: 'itemText',
valueField: 'itemValue',
},
ifShow: ({ values }) => isMessage(Reflect.get(values, 'messageType')),
},
{
field: 'accessKeyId',
label: 'accessKeyId',
required: true,
component: 'Input',
ifShow: ({ values }) => isMessage(Reflect.get(values, 'messageType')),
},
{
field: 'accessKeySecret',
label: 'accessKeySecret',
required: true,
component: 'Input',
ifShow: ({ values }) => isMessage(Reflect.get(values, 'messageType')),
},
{
field: 'host',
label: '服务器地址',
defaultValue: 'smtp.163.com',
required: true,
component: 'Input',
ifShow: ({ values }) => isEmail(Reflect.get(values, 'messageType')),
},
{
field: 'port',
label: '端口',
defaultValue: 25,
required: true,
component: 'InputNumber',
ifShow: ({ values }) => isEmail(Reflect.get(values, 'messageType')),
},
{
field: 'username',
label: '用户名',
required: true,
component: 'Input',
ifShow: ({ values }) => isEmail(Reflect.get(values, 'messageType')),
},
{
field: 'password',
label: '密码',
required: true,
component: 'InputPassword',
ifShow: ({ values }) => isEmail(Reflect.get(values, 'messageType')),
},
{
field: 'config',
label: '消息配置',
component: 'Input',
show: false,
},
{
field: 'id',
label: '主键',
component: 'Input',
show: false,
},
{
field: 'status',
label: '状态',
component: 'RadioButtonGroup',
defaultValue: 0,
componentProps: {
options: [
{ label: '启用', value: 1 },
{ label: '停用', value: 0 },
],
},
},
{
label: '备注',
field: 'remark',
component: 'InputTextArea',
},
];