-
Notifications
You must be signed in to change notification settings - Fork 37
/
action.js
243 lines (199 loc) · 6.3 KB
/
action.js
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
import { actionMixin, fetch, createAppElement } from 'maka'
@actionMixin('base', 'lodash', 'moment', 'tableHelper', 'treeHelper', 'modal', 'message')
export default class action {
constructor(option) {
Object.assign(this, option.mixins)
this.searchReload = this.lodash.debounce(this.searchReload, 200)
}
onInit = () => {
const pagination = this.base.gs('data.pagination')
this.load('all', pagination)
}
load = async (type, pagination, filter = { search: '' }) => {
var tree, list, customers
switch (type) {
case 'all':
tree = (await fetch.post('/v1/customer/group/queryAll', {})) || []
tree = this.treeHelper.build(tree)
customers = await fetch.post('/v1/customer/query', { pagination, filter })
list = customers.list || []
pagination = customers.pagination
break
case 'list':
customers = await fetch.post('/v1/customer/query', { pagination, filter })
list = customers.list || []
pagination = customers.pagination
break
case 'tree':
tree = (await fetch.post('/v1/customer/group/queryAll', {})) || []
tree = this.treeHelper.build(tree)
break
}
filter.search = this.base.gs('data.filter.search')
var json = {}
if (tree) {
json = {
...json,
'data.tree': tree
}
}
if (list) {
json = {
...json,
'data.pagination': pagination,
'data.filter': filter,
'data.list': list
}
}
this.base.ss(json)
}
treeReload = () => {
this.load('tree')
}
treeSelect = (selectedKeys, info) => {
const pagination = { current: 1, total: 0, pageSize: 20 },
filter = { customerGroupId: selectedKeys[0] }
this.load('list', pagination, filter)
}
treeAdd = async () => {
const data = this.base.gs()
const customerGroupId = data.filter.customerGroupId,
tree = data.tree,
customerGroup = (tree && this.treeHelper.findById(tree, customerGroupId))
const ret = await this.modal.show({
title: '新增',
children: createAppElement('set-customer-group', {
parent: customerGroup
}),
bodyStyle: {
height: 200
},
width: 400
})
if (ret) {
this.load('tree')
}
}
treeModify = async () => {
const data = this.base.gs()
const customerGroupId = data.filter.customerGroupId
if (!customerGroupId) {
this.message.error('请选中一个客户组')
return
}
const ret = await this.modal.show({
title: '修改',
children: createAppElement('set-customer-group', {
customerGroupId
}),
bodyStyle: {
height: 200
},
width: 400
})
if (ret) {
this.load('tree')
}
}
treeDel = async () => {
const data = this.base.gs()
const customerGroupId = data.filter.customerGroupId
if (!customerGroupId) {
this.message.error('请选中一个客户组')
return
}
const ret = await this.modal.confirm({
title: '删除',
content: '确认删除?'
})
if (ret) {
await fetch.post('/v1/customer/group/del', {id: customerGroupId})
this.message.success('删除客户组成功')
this.load('tree')
}
}
reload = async () => {
const pagination = this.base.gs('data.pagination'),
filter = this.base.gs('data.filter')
this.load('list', pagination, filter)
}
pageChanged = (current, pageSize) => {
const filter = this.base.gs('data.filter')
this.load('list', { current, pageSize }, filter)
}
searchChange = (e) => {
var v = e.target.value
this.base.setState({ 'data.filter.search': v })
this.searchReload(v)
}
searchReload = (v) => {
const pagination = this.base.gs('data.pagination'),
filter = this.base.gs('data.filter')
filter.search = v
this.load('list', pagination, filter)
}
add = async () => {
var ret = await this.modal.show({
title: '新增客户',
children: createAppElement('set-customer', {}),
width: 500,
bodyStyle: {
height: 200
}
})
if (ret) {
this.reload()
}
}
modify = row => async () => {
var ret = await this.modal.show({
title: '修改客户',
children: createAppElement('set-customer', { customerId: row.id }),
width: 500,
bodyStyle: {
height: 200
}
})
if (ret) {
this.reload()
}
}
del = row => async () => {
var ret = await this.modal.confirm({
title: '删除',
content: '确认删除?'
})
if (!ret)
return
const { id } = row
await fetch.post('/v1/customer/del', {
customers: [{ id }]
})
this.message.success('删除客户成功')
this.reload()
}
batchDel = async () => {
const lst = this.base.gs('data.list')
if (!lst || lst.length == 0) {
this.message.error('请选中要删除的客户')
return
}
const selectRows = lst.filter(o => o.isSelected)
if (!selectRows || selectRows.length == 0) {
this.message.error('请选中要删除的客户')
return
}
const ret = await this.modal.confirm({
title: '删除',
content: '确认删除?'
})
if (!ret)
return
const customers = selectRows.map(o => ({ id: o.id }))
await fetch.post('/v1/customer/del', {
customers
})
this.message.success('删除成功')
this.reload()
}
}