1234567891011121314151617181920212223242526272829303132333435 |
- (function(exports) {
- var bigDataOutApi = {
- // 获取热搜
- hot_words: function() {
- var params ={
- reCount:5,
- type:1
- }
- return httpRequest.get("/resource/api/v1.0/resource/text_search/hot_words",{data: params,getServer:true})
- },
- //全文检索
- text_search: function(data) {
- return httpRequest.get("/resource/api/v1.0/resource/text_search",{data: data,getServer:true})
- },
- // 频繁就医
- getOftenIllList: function(data) {
- return httpRequest.get("/quota/api/v1.0/tj/getOftenIllList",{data: data,getServer:true})
- },
- // 超高费用
- getHighCostList: function(data) {
- return httpRequest.get("/quota/api/v1.0/tj/getHighCostList",{data: data,getServer:true})
- },
- // 重复检查检验
- getRepeateInspectList: function(data) {
- return httpRequest.get("/quota/api/v1.0/tj/getRepeateInspectList",{data: data,getServer:true})
- },
- // 用药分析
- drugAnalysis: function(data) {
- return httpRequest.get("/quota/api/v1.0/tj/drugAnalysis",{data: data,getServer:true})
- },
- }
- exports.bigDataOutApi = bigDataOutApi;
- })(window)
|