zhangzengfei
2022-02-22 7a98d6724da914d86b6ec2912dba9bfdf2423c39
src/api/event.ts
@@ -76,4 +76,30 @@
    method: "get"
  })
}
}
export const uploadSound = (data: any) => {
  return request({
    url: "/data/api-v/voice/upload",
    method: "post",
    data
  })
}
//获取所有的推送字段配置
export const getPushSet = ()=>{
  return request({
    url:'/data/api-v/eventPush/getPushSet',
    method:'get'
  })
}
export const deleteSound = (q:any) => {
  return request({
    url: "/data/api-v/voice/del",
    method: "get",
    params:q
  })
}