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 }) }