123456789101112131415161718192021222324252627282930313233343536373839 |
- (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})
- },
- // 字典接口
- lastDictItem: function(data) {
- return httpRequest.get("/gateway/hos-admin/api/v1.0/standardCenter/lastDictItem/list?tenant_name=jkzl",{data: data})
- },
- }
- exports.bigDataOutApi = bigDataOutApi;
- })(window)
|