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
| import request from '@/utils/request'
|
| // 查询文件列表
| export function listFile(query) {
| return request({
| url: '/dp/sysFile/listAll',
| method: 'get',
| params: query
| })
| }
|
| //查询文件搜索列表
| export function SearchlistFile(data) {
| return request({
| url: '/dp/sysFile/getPageList',
| method: 'post',
| data: data
| })
| }
|
| // 删除
| export function deleteBatch(fileId) {
| return request({
| url: '/dp/sysFile/deleteBatch',
| method: 'post',
| data: fileId
| })
| }
|
|