heyujie
2021-11-05 c69082e60f9b27dfd8c6cfa64af0b36ede1fade4
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
  })
}