123456789101112131415161718192021222324 |
- (function(exports) {
- var bigDataOutApi = {
- // 获取热搜
- hot_words: function() {
- var params ={
- reCount:5,
- type:1
- }
- return httpRequest.get("/api/v1.0/resource/text_search/hot_words",{data: params,getServer:true})
- },
- //全文检索
- text_search: function(data) {
- return httpRequest.get("/api/v1.0/resource/text_search",{data: data,getServer:true})
- },
- // 超高费用
- getHighCostList: function(data) {
- return httpRequest.get("/api/v1.0/open/tj/getHighCostList",{data: data})
- },
- }
-
- exports.bigDataOutApi = bigDataOutApi;
- })(window)
|