haoxuan
2023-09-01 1e1e5f612f252d66b0d0386cf52873bb1f3f7d7b
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
  })
}