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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
import React, { useState, useEffect, useRef } from 'react';
import { Form, Input, Select, Space, TreeSelect, Empty, Switch, Button, message } from 'antd';
import { DeleteOutlined } from '@ant-design/icons';
import { AddSMSStatus } from '@/services/messagemanage/messagemanage';
const { Option } = Select;
const { TextArea } = Input;
const ShortMessageConfig = props => {
const { formValue, id, template } = props;
const [form] = Form.useForm();
useEffect(() => {
console.log(template, 'template');
getFormData();
}, []);
const getFormData = () => {
console.log(formValue, 'formValue');
if (formValue) {
form.setFieldsValue({ ...formValue, SMSStatus: formValue.SMSStatus === 1 });
}
};
// 监听表单
const changeValue = (changedFields, allFields) => {
console.log(Object.keys(changedFields), allFields, 'changedFields');
if (Object.keys(changedFields)[0] === 'SMSContent') {
let regex = /\{@(.+?)\}/g;
let originalList = allFields.lines || [];
let list = changedFields.SMSContent.match(regex)?.map(item => {
let Name = item.substring(2, item.length - 1);
let orgItem = originalList.find(ele => ele.Name === Name);
return {
Name,
Description: orgItem ? orgItem.Description : '',
DefaultValue: orgItem ? orgItem.DefaultValue : '',
};
});
if (list) {
form.setFieldsValue({ lines: list });
} else {
form.setFieldsValue({ lines: [] });
}
}
if (Object.keys(changedFields)[0] === 'SMSType') {
let content = template.find(item => item.id === changedFields.SMSType);
let regex = /\{@(.+?)\}/g;
let list = content.Param.match(regex)?.map(item => {
let Name = item.substring(2, item.length - 1);
return {
Name,
Description: '',
DefaultValue: '',
};
});
form.setFieldsValue({ SMSContent: content.Param, lines: list, SMSNumber: content.Code });
}
};
const onFinish = () => {
if (!id) {
message.error('请保存基础信息');
return;
}
form.validateFields().then(values => {
let value = JSON.parse(JSON.stringify(values));
AddSMSStatus({
...value,
SMSStatus: value.SMSStatus ? 1 : 0,
id,
}).then(res => {
if (res.code === 0) {
message.success('保存成功');
} else {
message.error(res.msg);
}
});
});
};
return (
<div>
<Form
form={form}
labelCol={{ span: 2 }}
wrapperCol={{ span: 22 }}
onValuesChange={changeValue}
labelAlign="left"
>
<div style={{ display: 'flex' }}>
<Form.Item
label="消息类型"
name="SMSType"
labelCol={{ span: 4 }}
wrapperCol={{ span: 20 }}
style={{ width: '400px', marginRight: '15px', display: 'block' }}
>
<Select placeholder="请选择消息类型">
{template.map(item => (
<Option value={item.id} key={item.id}>
{item.Name}
</Option>
))}
</Select>
</Form.Item>
<Form.Item
label="短信编号"
name="SMSNumber"
style={{ width: '400px', display: 'block' }}
labelCol={{ span: 4 }}
wrapperCol={{ span: 20 }}
>
<Input placeholder="请填写消息标题" />
</Form.Item>
<Form.Item
label="是否开启"
name="SMSStatus"
valuePropName="checked"
style={{ width: '400px', display: 'block' }}
labelCol={{ span: 4 }}
wrapperCol={{ span: 20 }}
>
<Switch checkedChildren="是" unCheckedChildren="否" />
</Form.Item>
</div>
<Form.Item label="内容" name="SMSContent" style={{ display: 'block', width: '1200px' }}>
<TextArea rows={4} placeholder="请输入内容" />
</Form.Item>
<Form.List name="lines">
{fields => (
<>
{fields.map(({ key, name, ...restField }) => (
<Space
key={key}
style={{
display: 'flex',
marginBottom: 8,
}}
align="baseline"
>
<Form.Item
{...restField}
label="参数名"
name={[name, 'Name']}
labelCol={{ span: 6 }}
wrapperCol={{ span: 18 }}
>
<Input readOnly />
</Form.Item>
<Form.Item
{...restField}
name={[name, 'Description']}
label="含义"
labelCol={{ span: 6 }}
wrapperCol={{ span: 18 }}
rules={[
{
required: true,
message: '请填写含义',
},
]}
>
<Input placeholder="请填写含义" />
</Form.Item>
<Form.Item
{...restField}
name={[name, 'DefaultValue']}
label="默认值"
labelCol={{ span: 6 }}
wrapperCol={{ span: 18 }}
// rules={[
// {
// required: true,
// message: '请填写默认值',
// },
// ]}
>
<Input placeholder="请填写默认值" />
</Form.Item>
{/* <MinusCircleOutlined onClick={() => remove(name)} /> */}
</Space>
))}
{/* <Form.Item>
<Button type="dashed" onClick={() => add()} block icon={<PlusOutlined />}>
Add field
</Button>
</Form.Item> */}
</>
)}
</Form.List>
<Form.Item>
<Button type="primary" onClick={onFinish}>
保存
</Button>
</Form.Item>
</Form>
</div>
);
};
export default ShortMessageConfig;