1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| import request from '@/utils/HttpUtil'
| import { baseUrl } from '/env'
|
| export function pageListApi(params) {
| return request({
| url: baseUrl+'/imgGroup/pageList',
| method: 'get',
| params
| })
| }
| export function listGroupAllApi() {
| return request({
| url: baseUrl+'/imgGroup/listAll',
| method: 'get'
| })
| }
| export function saveOrUpdateApi(data) {
| return request({
| url: baseUrl+'/imgGroup/saveOrUpdate',
| method: 'post',
| data
| })
| }
|
|