| | |
| | | * @param {*} |
| | | * @returns |
| | | */ |
| | | export const getSecurityList = (current, size, type, name, startTime, endTime,deptId) => { |
| | | export const getSecurityList = (current, size, type, name, startTime, endTime, deptId) => { |
| | | return request({ |
| | | url: `/api/security/security/page`, |
| | | method: 'get', |
| | |
| | | * @param {*} type 箭头类型 |
| | | * @returns |
| | | */ |
| | | export const addSecurityPlot = (securityId, position, type) => { |
| | | export const addSecurityPlot = (securityId, position, type, name) => { |
| | | return request({ |
| | | url: `/api/securityPlot/securityPlot/save`, |
| | | method: 'post', |
| | | data: { |
| | | securityId, |
| | | position, |
| | | type |
| | | type, |
| | | name |
| | | } |
| | | }) |
| | | } |
| | |
| | | } |
| | | |
| | | /** |
| | | * 获得活动标绘箭头列表 |
| | | * 更新活动标绘箭头 |
| | | * @param {*} securityId 活动ID |
| | | * @returns |
| | | */ |