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.
22 lines
690 B
22 lines
690 B
2 years ago
|
import axios from '@/axios/index'
|
||
|
// 获取列表
|
||
|
export function crmInterfaceCalendarIndex(data) {
|
||
|
return axios.posts('/api/basedata/interface-calendar/list',data)
|
||
|
}
|
||
|
// 创建
|
||
|
export function crmInterfaceCalendarSave(data) {
|
||
|
return axios.posts('/api/basedata/interface-calendar',data)
|
||
|
}
|
||
|
// 根据id获取
|
||
|
export function crmInterfaceCalendarRead(id) {
|
||
|
return axios.gets('/api/basedata/interface-calendar/'+id)
|
||
|
}
|
||
|
// 根据id修改
|
||
|
export function crmInterfaceCalendarUpdate(id,data) {
|
||
|
return axios.puts('/api/basedata/interface-calendar/'+id,data)
|
||
|
}
|
||
|
// 删除
|
||
|
export function crmInterfaceCalendarDelete(data) {
|
||
|
return axios.posts('/api/basedata/interface-calendar/delete',data)
|
||
|
}
|