1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| import request from '@/axios';
| // 列表接口
| export const getaiImagesPageAPI = (data) => {
| return request({
| url: `/blade-resource//attach/attachmentsPage`,
| method: 'post',
| data
| })
| };
| // 详情接口
| export const getAttachInfoAPI = (id) => {
| return request({
| url: `/blade-resource/attach/getAttachInfo`,
| method: 'get',
| params: {
| id,
| },
| })
| };
|
|