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.
49 lines
956 B
49 lines
956 B
import request from '@/utils/request'
|
|
|
|
//* ******************** 互动图 *********************
|
|
// 互动图查询
|
|
export function interactionDiagramGetAll(params) {
|
|
console.log(params)
|
|
return request({
|
|
url: '/cereInteractionDiagram/getAll',
|
|
method: 'get',
|
|
params
|
|
})
|
|
}
|
|
|
|
// 互动图详情
|
|
export function interactionDiagramGetById(params) {
|
|
return request({
|
|
url: '/cereInteractionDiagram/getById',
|
|
method: 'get',
|
|
params
|
|
})
|
|
}
|
|
|
|
// 添加互动图
|
|
export function interactionDiagramAdd(data) {
|
|
return request({
|
|
url: '/cereInteractionDiagram/save',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 修改互动图
|
|
export function interactionDiagramUpdate(data) {
|
|
return request({
|
|
url: '/cereInteractionDiagram/update',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 删除互动图
|
|
export function interactionDiagramDelete(data) {
|
|
return request({
|
|
url: '/cereInteractionDiagram/delete',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|