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.
 
 
 

33 lines
566 B

import request from '@/utils/request'
// 服务档案详情
export function getServiceInfo(id){
return request({
url: `/h5/ums/petCare/${id}`,
headers:{ "isToken":true},
method: 'get'
})
}
// 新增服务档案信息
export function addServiceInfo(data){
return request({
url: `/h5/ums/petCare`,
headers:{ "isToken":true},
method: 'post',
data:data
})
}
// 修改服务档案信息
export function updateServiceInfo(data){
return request({
url: `/h5/ums/petCare`,
headers:{ "isToken":true},
method: 'put',
data:data
})
}