shuishen
2023-02-11 6830420ded2f404da6ef57fd0bb982a4b64a08da
src/api/activity/index.js
@@ -6,7 +6,7 @@
 * @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',
@@ -184,14 +184,15 @@
 * @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
        }
    })
}
@@ -212,7 +213,7 @@
}
/**
 * 获得活动标绘箭头列表
 * 更新活动标绘箭头
 * @param {*} securityId  活动ID
 * @returns
 */