Blame view

antis-ncc-admin/src/api/system/cacheManage.js 570 Bytes
03207d5d   wwk   1
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
  import request from '@/utils/request'
  
  export function CacheManageClear(name) {
    return request({
      url: `/api/system/CacheManage/${name}`,
      method: 'delete',
    })
  }
  export function CacheManageClearAll() {
    return request({
      url: '/api/system/CacheManage/Actions/ClearAll',
      method: 'post',
    })
  }
  export function CacheManageInfo(name) {
    return request({
      url: `/api/system/CacheManage/${name}`,
      method: 'get',
    })
  }
  export function CacheManageList(data) {
    return request({
      url: '/api/system/CacheManage',
      method: 'get',
      data
    })
  }