zhangzengfei
2021-06-11 fa7044f3ccc9a91bc2bc117d1a06f650d86554f2
src/api/event.ts
@@ -67,4 +67,21 @@
    method: "post",
    data: qs.stringify(query)
  });
};
};
//获取事件声音列表
export const getSoundList = () => {
  return request({
    url: "/data/api-v/voice/findAll",
    method: "get"
  })
}
//获取所有的推送字段配置
export const getPushSet = ()=>{
  return request({
    url:'/data/api-v/eventPush/getPushSet',
    method:'get'
  })
}