msg.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. let msgSJ = null
  2. import storage from './storage' // 缓存文件
  3. import * as http from './http' // http请求接口
  4. export function getMsg(code){
  5. let airPort = "CAN"
  6. let list = []
  7. clearInterval(msgSJ)
  8. if(code){
  9. airPort = code
  10. }
  11. msgSJ = setInterval(function(){
  12. let data = {
  13. "serviceId": 3021,
  14. "page": 1,
  15. "pageSize": 9999,
  16. "dataContent": [{
  17. "outAirport": airPort
  18. }
  19. ]
  20. }
  21. http.httpPost('/openApi/query', data).then(res => {
  22. if (res.code == "0") {
  23. if(storage.getJson('msgList')){
  24. let oldCount = storage.getJson('msgList').length
  25. if(oldCount != res.returnData.length){
  26. storage.setJson('msgList',res.returnData)
  27. uni.showTabBarRedDot({
  28. index: 1
  29. })
  30. }
  31. }
  32. else{
  33. storage.setJson('msgList',res.returnData)
  34. uni.showTabBarRedDot({
  35. index: 1
  36. })
  37. }
  38. }
  39. else{
  40. uni.showToast({
  41. icon:'none',
  42. title: "查询信息失败",
  43. duration: 5000
  44. });
  45. }
  46. })
  47. },3000)
  48. }
  49. export function stopMsg(){
  50. clearInterval(msgSJ)
  51. }