You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
613 B

import request from '@/utils/request'
export function index(params) {
return request({
method: 'get',
url: '/api/oa/special-days/index',
params
})
}
export function show(params) {
return request({
method: 'get',
url: '/api/oa/special-days/show',
params
})
}
export function save(data, isLoading = true) {
return request({
method: 'post',
url: '/api/oa/special-days/save',
data,
isLoading
})
}
export function destroy(params, isLoading = true) {
return request({
method: 'get',
url: '/api/oa/special-days/destroy',
params,
isLoading
})
}