You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
865 B
JavaScript
45 lines
865 B
JavaScript
import request from '@/utils/request'
|
|
|
|
// 查询灌注记录列表
|
|
export function listPerfusionRecord(query) {
|
|
return request({
|
|
url: '/report/perfusionRecord/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询灌注记录详细
|
|
export function getPerfusionRecord(objId) {
|
|
return request({
|
|
url: '/report/perfusionRecord/' + objId,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增灌注记录
|
|
export function addPerfusionRecord(data) {
|
|
return request({
|
|
url: '/report/perfusionRecord',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改灌注记录
|
|
export function updatePerfusionRecord(data) {
|
|
return request({
|
|
url: '/report/perfusionRecord',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除灌注记录
|
|
export function delPerfusionRecord(objId) {
|
|
return request({
|
|
url: '/report/perfusionRecord/' + objId,
|
|
method: 'delete'
|
|
})
|
|
}
|