bigDataOut-api.js 687 B

123456789101112131415161718192021222324
  1. (function(exports) {
  2. var bigDataOutApi = {
  3. // 获取热搜
  4. hot_words: function() {
  5. var params ={
  6. reCount:5,
  7. type:1
  8. }
  9. return httpRequest.get("/api/v1.0/resource/text_search/hot_words",{data: params,getServer:true})
  10. },
  11. //全文检索
  12. text_search: function(data) {
  13. return httpRequest.get("/api/v1.0/resource/text_search",{data: data,getServer:true})
  14. },
  15. // 超高费用
  16. getHighCostList: function(data) {
  17. return httpRequest.get("/api/v1.0/open/tj/getHighCostList",{data: data})
  18. },
  19. }
  20. exports.bigDataOutApi = bigDataOutApi;
  21. })(window)