index.jsx
8.08 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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
/**
* Author: Charles
* Date: 2022.9.13
* Description: [账号列表]
*/
import React, { useEffect } from 'react';
import { connect } from 'umi';
import { Card, Form, Input, Button, Table, Divider, Tooltip, Select, Switch } from 'antd';
import { EditOutlined, RedoOutlined } from '@ant-design/icons';
import { paginations } from '@/constants';
import ModalUpdateAccount from './ModalUpdateAccount';
import ModalResetPassword from './ModalResetPassword';
import { StyledPageContainer, StyledPageHeader, StyledPageContent } from '@/components/style';
const FormItem = Form.Item;
const { Option } = Select;
/* SearchForm */
const SearchForm = props => {
const [form] = Form.useForm();
const { dataSearch, handleReset, handleFinish } = props;
useEffect(() => {
form.setFieldsValue({
...dataSearch,
});
}, [dataSearch]);
/* 点击搜索 */
const onFinish = values => {
handleFinish(values);
};
/* 点击重置 */
const onReset = () => {
handleReset();
};
return (
<Form name="Form_Account" layout="inline" form={form} onFinish={onFinish}>
<FormItem label="账号名称" name="keyword">
<Input placeholder="请输入账号名称" style={{ width: '220px' }} />
</FormItem>
<FormItem label="账号状态" name="status">
<Select placeholder="请选择账号状态" style={{ width: '180px' }}>
<Option value="ALL">全部</Option>
<Option value="1">启用</Option>
<Option value="0">禁用</Option>
</Select>
</FormItem>
<FormItem>
<Button type="primary" htmlType="submit" className="mr-15">
搜索
</Button>
<Button className="mr-15" htmlType="button" onClick={onReset}>
重置
</Button>
</FormItem>
</Form>
);
};
/* DataTable */
const DataTable = props => {
const {
dispatch,
loading,
handleGetList,
currentUser: { name },
dataAccount: { records = [], current, size, total },
} = props;
/* 点击分页 */
const handlePageChange = (current, size) => {
handleGetList(current, size);
};
const columns = [
{
title: '序号',
dataIndex: 'id',
align: 'center',
width: 100,
render(t, r, idx) {
return (current - 1) * size + idx + 1;
},
},
{
title: '账号',
dataIndex: 'username',
align: 'center',
width: 140,
},
{
title: '姓名',
dataIndex: 'realName',
align: 'center',
width: 140,
},
{
title: '角色',
dataIndex: 'roleName',
align: 'center',
width: 140,
},
{
title: '账号状态',
dataIndex: 'status',
align: 'center',
width: 160,
render(t, r, idx) {
return (
<Switch
checkedChildren="启用"
unCheckedChildren="已禁用"
checked={t === 1}
disabled={name === r.username}
onChange={checked => {
dispatch({
type: 'Account/changeStatus',
payload: {
id: r.id,
status: checked ? 1 : 0,
},
});
}}
/>
);
},
},
{
title: '创建时间',
dataIndex: 'createTime',
align: 'center',
width: 200,
render(t, r, idx) {
return t || '-';
},
},
{
title: '操作',
align: 'center',
width: 160,
render(t, r) {
return (
<>
<Tooltip placement="top" title="编辑">
<EditOutlined
style={{ cursor: 'pointer', fontSize: 16 }}
onClick={() => {
dispatch({
type: 'Account/changeState',
payload: {
dataModal: {
modalType: 'ACCOUNT_SET_MODAL',
modalShow: true,
modalData: r,
},
},
});
}}
/>
</Tooltip>
<Divider type="vertical" style={{ margin: '0 16px' }} />
<Tooltip
placement="top"
title="重置密码"
onClick={() => {
dispatch({
type: 'Account/changeState',
payload: {
dataModal: {
modalType: 'PASSWORD_SET_MODAL',
modalShow: true,
modalData: r,
},
},
});
}}
>
<RedoOutlined style={{ cursor: 'pointer', fontSize: 16 }} />
</Tooltip>
</>
);
},
},
];
const pagination = {
...paginations,
total: total,
pageSize: size,
current,
showSizeChanger: total > 10,
onChange: (current, pageSize) => {
handlePageChange(current, pageSize);
},
onShowSizeChange: (current, pageSize) => {
handlePageChange(1, pageSize);
},
showTotal(total) {
return `总共 ${total} 条数据`;
},
};
return (
<Table
rowKey="id"
loading={loading}
dataSource={records}
columns={columns}
pagination={pagination}
scroll={{ y: `calc(100vh - 353px)` }}
/>
);
};
/* Main */
const Account = props => {
const {
dispatch,
loading,
dataSearch,
dataModal,
currentUser,
dataAccount,
dataAccount: { size },
} = props;
useEffect(() => {
handleGetList(1, 10);
}, []);
/* 账号列表 */
const handleGetList = (current, size) => {
dispatch({
type: 'Account/getAccountList',
payload: {
current: current || 1,
size: size || 10,
},
});
};
/* 点击搜索 */
const handleFinish = values => {
const { status, keyword } = values;
dispatch({
type: 'Account/changeState',
payload: {
dataSearch: {
keyword,
status,
},
},
});
handleGetList(0, size);
};
/* 点击重置 */
const handleReset = () => {
dispatch({ type: 'Account/resetSearch' });
handleGetList(0, 10);
};
// 关闭弹框
const handleCancelModal = () => {
dispatch({ type: 'Account/cancelModal' });
};
// 点击保存
const handleOk = values => {
const { saveType } = values;
if (saveType === 'ACCOUNT') {
dispatch({ type: 'Account/updateApplication', payload: { ...values, saveType: undefined } });
} else if (saveType === 'PASSWORD') {
dispatch({ type: 'Account/resetPassword', payload: { ...values, saveType: undefined } });
}
};
return (
<StyledPageContainer>
<StyledPageHeader>
<Button
type="primary"
onClick={() => {
dispatch({
type: 'Account/changeState',
payload: {
dataModal: {
modalType: 'ACCOUNT_SET_MODAL',
modalShow: true,
modalData: {},
},
},
});
}}
>
新增用户
</Button>
</StyledPageHeader>
<StyledPageContent>
<Card bordered={false}>
<SearchForm
dataSearch={dataSearch}
handleReset={handleReset}
handleFinish={handleFinish}
/>
<div className="mt-16">
<DataTable
dispatch={dispatch}
loading={loading}
handleGetList={handleGetList}
dataAccount={dataAccount}
currentUser={currentUser}
/>
</div>
</Card>
</StyledPageContent>
<ModalUpdateAccount
dataModal={dataModal}
handleCancelModal={handleCancelModal}
handleOk={handleOk}
/>
<ModalResetPassword
dataModal={dataModal}
handleCancelModal={handleCancelModal}
handleOk={handleOk}
/>
</StyledPageContainer>
);
};
export default connect(({ Account, user, loading }) => ({
...Account,
currentUser: user.currentUser,
loading: loading.effects['Account/getAccountList'],
}))(Account);