message.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <template>
  2. <view class="app-content">
  3. <view class="title-box">{{navname}}</view>
  4. <uni-section title="消息列表" type="line" class="box">
  5. <uni-list class="messageList">
  6. <uni-list-item v-for="(item, index) in msgList" :key="index" :title="item.msg" />
  7. </uni-list>
  8. </uni-section>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. navname: "消息",
  16. msgList: [],
  17. msgSJ: null
  18. }
  19. },
  20. onShow() {
  21. let that = this;
  22. this.$msg.stopMsg()
  23. uni.removeTabBarBadge({
  24. index: 1
  25. })
  26. uni.$on("scancodemsg", (data) => {
  27. if (data.msg.length > 9) {
  28. uni.navigateTo({
  29. url: "/pages/detail/index?luggageNum=" + data.msg
  30. })
  31. }
  32. });
  33. this.msgList = this.$storage.getJson('msgList')
  34. this.msgList.map(item => {
  35. if (item.abnormalState == "DLY") {
  36. item['msg'] = item.carrierFlightsDate + ",航班:" + item.carrierFlights +
  37. "(" + item.outAirport + "-" + item.landAirport + "),延误"
  38. }
  39. if (item.abnormalState == "CAN") {
  40. item['msg'] = item.carrierFlightsDate + ",航班:" + item.carrierFlights +
  41. "(" + item.outAirport + "-" + item.landAirport + "),取消"
  42. }
  43. })
  44. this.msgSJ = setInterval(function() {
  45. that.getMsg()
  46. }, 3000)
  47. },
  48. onLoad() {},
  49. onUnload() {
  50. this.$msg.getMsg()
  51. clearInterval(this.msgSJ)
  52. uni.$off("scancodemsg");
  53. },
  54. onHide() {
  55. uni.$off("scancodemsg");
  56. clearInterval(this.msgSJ)
  57. },
  58. methods: {
  59. getMsg() {
  60. let airPort = "CAN"
  61. if (this.$storage.get("airportName")) {
  62. airPort = this.$storage.get("airportName")
  63. }
  64. let data = {
  65. "serviceId": 3021,
  66. "page": 1,
  67. "pageSize": 9999,
  68. "dataContent": [{
  69. "outAirport": airPort
  70. }]
  71. }
  72. this.$http.httpPost('/openApi/query', data).then(res => {
  73. if (res.code == "0") {
  74. this.$storage.setJson('msgList', res.returnData)
  75. this.msgList = res.returnData
  76. this.msgList.map(item => {
  77. if (item.abnormalState == "DLY") {
  78. item['msg'] = item.carrierFlightsDate + ",航班:" + item.carrierFlights +
  79. "(" + item.outAirport + "-" + item.landAirport + "),延误"
  80. }
  81. if (item.abnormalState == "CAN") {
  82. item['msg'] = item.carrierFlightsDate + ",航班:" + item.carrierFlights +
  83. "(" + item.outAirport + "-" + item.landAirport + "),取消"
  84. }
  85. })
  86. } else {
  87. uni.showToast({
  88. icon: 'none',
  89. title: "查询信息失败",
  90. duration: 5000
  91. });
  92. }
  93. })
  94. },
  95. scan() {
  96. uni.scanCode({
  97. onlyFromCamera: true,
  98. success: function(res) {
  99. if (res.result.length > 9) {
  100. uni.navigateTo({
  101. url: "/pages/detail/index?luggageNum=" + res.result
  102. })
  103. }
  104. }
  105. });
  106. },
  107. }
  108. }
  109. </script>
  110. <style lang="scss" scoped>
  111. .app-content {
  112. position: relative;
  113. background: rgb(49, 85, 99);
  114. padding-top: 3.6rem;
  115. box-sizing: border-box;
  116. height: 100vh;
  117. >.title-box {
  118. width: 100%;
  119. height: 2.375rem;
  120. display: flex;
  121. justify-content: center;
  122. align-items: center;
  123. padding-top: 1.25rem;
  124. color: rgb(255, 255, 255);
  125. font-family: Noto Sans SC;
  126. font-size: 1rem;
  127. position: fixed;
  128. top: 0;
  129. left: 0;
  130. z-index: 1000;
  131. }
  132. >.box{
  133. width: 100%;
  134. height:calc(100vh - 3rem);
  135. overflow-x: hidden;
  136. overflow-y: auto;
  137. // >.messageList {
  138. // width: 100%;
  139. // height:calc(100% - 1rem);
  140. // overflow-x: hidden;
  141. // overflow-y: auto;
  142. // }
  143. }
  144. }
  145. </style>