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
| import request from '@/utils/request'
| import Qs from 'qs'
|
| export function listGroupShop(query) {
| return request({
| method: 'get',
| params: {
| _gp: 'admin.groupshop',
| _mt: 'list',
| ...query
| }
| })
| }
|
| export function editGroupShop(data) {
| return request({
| method: 'post',
| data: Qs.stringify({
| _gp: 'admin.groupshop',
| _mt: 'edit',
| ...data
| })
| })
| }
|
| export function deleteGroupShop(id) {
| return request({
| method: 'post',
| data: Qs.stringify({
| _gp: 'admin.groupshop',
| _mt: 'delete',
| id: id
| })
| })
| }
|
| export function createGroupShop(data) {
| return request({
| method: 'post',
| data: Qs.stringify({
| _gp: 'admin.groupshop',
| _mt: 'create',
| ...data
| })
| })
| }
|
|