16 lines
300 B
JavaScript
16 lines
300 B
JavaScript
import request from '@/utils/request.js'
|
|
|
|
export const getCacheOpt = (cacheKey) => {
|
|
return request({
|
|
url: '/dict/data/option/'+ cacheKey,
|
|
method: 'get',
|
|
})
|
|
}
|
|
|
|
export const getCacheType = (cacheKey) => {
|
|
return request({
|
|
url: '/dict/data/type/'+ cacheKey,
|
|
method: 'get',
|
|
})
|
|
}
|