局长信箱-互联网端管理-前端
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.
 
 
 
 

10 lines
312 B

import { get, post} from "@/util/request"
export function getholiday(search) {
return get('/outer/holiday/getholiday?search='+search)
}
export function showholiday() {
return get('/outer/holiday/showholiday')
}
export function saveholiday(search) {
return post('/outer/holiday/saveholiday',search)
}