|
@@ -16,16 +16,15 @@ export function fetchGambleMemberList(query) {
|
16
|
16
|
|
17
|
17
|
export function fetchWeChatMemberList(data, query) {
|
18
|
18
|
// TODO check data 帶什麼
|
19
|
|
- console.log('data', data)
|
20
|
19
|
return request({
|
21
|
20
|
url: `/weChatRooms/${data.room}/weChatUsers`,
|
22
|
21
|
method: 'get',
|
23
|
22
|
params: {
|
24
|
23
|
limit: query.limit,
|
25
|
24
|
offset: (query.page - 1) * query.limit,
|
26
|
|
- name: query.name
|
27
|
|
- // chipsSort: query.chipsSort,
|
28
|
|
- // updatedSort: query.updatedSort
|
|
25
|
+ name: query.name,
|
|
26
|
+ chipsSort: query.chipsSort,
|
|
27
|
+ updatedSort: query.updatedSort
|
29
|
28
|
}
|
30
|
29
|
})
|
31
|
30
|
}
|