index.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. <template>
  2. <view class="app-content">
  3. <view class="nav">
  4. <liu-search @fall="fall" :historyList="historyList" @input="input" @change="change"
  5. @changes='changes'></liu-search>
  6. </view>
  7. <view class="content" v-if="flightList.length">
  8. <!-- <button v-for="(item, index) in flightList" :key="index" @tap="input(1)">11111111</button> -->
  9. <button class="craid" v-for="(item,index) in flightList" :key="index" @tap="toIndex(item)">
  10. <view class="craid_data">
  11. <p>{{item.carrierFlights}}</p>
  12. <span>{{item.carrierFlightsDate}}</span>
  13. </view>
  14. <view class="craid_data">
  15. <p>{{item.outAirport}}</p>
  16. <span>{{item.scheduleTakeOffTime}}</span>
  17. </view>
  18. <view class="aircraft">To</view>
  19. <view class="craid_data">
  20. <p>{{item.landAirport}}</p>
  21. <span>{{item.scheduleLandInTime}}</span>
  22. </view>
  23. </button>
  24. </view>
  25. <!-- 提示信息和下拉弹窗 -->
  26. <mask-model :headername="headername" :typeShow="typeShow" :tabname="tabname" ref="showMask" btnType="1"
  27. @confirm="confirm" @cancel="cancel" titleColoe="#666666" cancelColor="#666666" confirmColor="#007AFF"
  28. :maskTitle="maskTitle"></mask-model>
  29. </view>
  30. </template>
  31. <script>
  32. import Nav from '../../components/header/nav.vue'
  33. import maskModel from '../../components/mask-model/mask-model.vue'
  34. export default {
  35. data() {
  36. return {
  37. historyList: [],
  38. maskTitle: '请核对录入的航班号或行李号是否正确',
  39. tabname: '', //按钮名称
  40. typeShow: true,
  41. headername: '请核对信息',
  42. value:null,
  43. flightList:[]
  44. }
  45. },
  46. created(option) {},
  47. onLoad() {},
  48. onUnload() {uni.$off("scancodemsg");},
  49. onShow() {
  50. uni.$on("scancodemsg", (data) => {
  51. if (data.msg.length > 9) {
  52. uni.navigateTo({
  53. url: "/pages/detail/index?luggageNum=" + data.msg
  54. })
  55. }
  56. });
  57. },
  58. onHide() {uni.$off("scancodemsg");},
  59. mounted() {
  60. },
  61. components: {
  62. Nav
  63. },
  64. methods: {
  65. toIndex(item){
  66. this.$storage.setJson('searchData',item);
  67. // this.$storage.set('flightDate',item.carrierFlightsDate);
  68. uni.switchTab({
  69. url: "/pages/index/index"
  70. })
  71. },
  72. fall() {
  73. uni.navigateBack({
  74. delta: 1
  75. })
  76. },
  77. changes() {
  78. // uni.redirectTo({
  79. // url: "/pages/myrecords/index"
  80. // })
  81. },
  82. //搜索内容
  83. change(e) {
  84. this.value = e
  85. this.typeShow = false
  86. this.maskTitle = '请核对录入的航班号或行李号是否正确'
  87. this.headername = '请核对信息'
  88. this.$refs.showMask.show();
  89. },
  90. confirm: function() { //确定按钮
  91. if(this.value.length>9){
  92. uni.navigateTo({
  93. url: "/pages/detail/index?luggageNum=" + Number(this.value)
  94. })
  95. }
  96. else{
  97. this.getFlightData(this.value)
  98. this.cancel()
  99. }
  100. },
  101. async getFlightData(num) {
  102. let data = {
  103. "serviceId": 3000,
  104. "page": 1,
  105. "pageSize": 10,
  106. "dataContent": [{
  107. "carrierFlights":num
  108. }],
  109. "event": "0"
  110. }
  111. await this.$http.httpPost('/openApi/query', data).then(res => {
  112. if (res.code == "0" && res.returnData.length>0) {
  113. this.$storage.remove('searchData')
  114. this.$storage.remove('flightDate');
  115. if(res.returnData.length==1){
  116. if(res.returnData[0].scheduleTakeOffTime){
  117. res.returnData[0].scheduleTakeOffTime = res.returnData[0].scheduleTakeOffTime.split("T")[1]
  118. }
  119. if(res.returnData[0].scheduleLandInTime){
  120. res.returnData[0].scheduleLandInTime = res.returnData[0].scheduleLandInTime.split("T")[1]
  121. }
  122. this.$storage.setJson('searchData',res.returnData[0]);
  123. uni.switchTab({
  124. url: "/pages/index/index"
  125. })
  126. }
  127. else {
  128. this.flightList = res.returnData
  129. this.flightList.map(item => {
  130. if(item.scheduleTakeOffTime){
  131. item.scheduleTakeOffTime = item.scheduleTakeOffTime.split("T")[1]
  132. }
  133. else{
  134. item.scheduleTakeOffTime = "-"
  135. }
  136. if(item.scheduleLandInTime){
  137. item.scheduleLandInTime = item.scheduleLandInTime.split("T")[1]
  138. }
  139. else{
  140. item.scheduleLandInTime = "-"
  141. }
  142. })
  143. }
  144. }
  145. else{
  146. this.$scanAudio.src = "../../static/hqhb.mp3"
  147. this.$scanAudio.play()
  148. uni.showToast({
  149. icon:'none',
  150. title: "无此航班号信息,请确认航班号",
  151. duration: 5000
  152. });
  153. }
  154. })
  155. },
  156. cancel(){},
  157. //input事件
  158. input(e) {
  159. console.log('搜索框输入的内容:' + e)
  160. },
  161. },
  162. }
  163. </script>
  164. <style lang="scss" scoped>
  165. .app-content {
  166. height:100vh;
  167. overflow: hidden;
  168. >.nav {
  169. width: 100%;
  170. position: relative;
  171. display: flex;
  172. margin-top: 1.875rem;
  173. height: 10rem;
  174. >.log {
  175. width: .375rem;
  176. height: .75rem;
  177. font-size: .75rem;
  178. position: absolute;
  179. left: 1.5rem;
  180. background: url('../../static/ico@1x.png') no-repeat;
  181. background-size: 100% 100%;
  182. }
  183. }
  184. >.content{
  185. height: calc(100vh - 14rem);
  186. overflow-x: hidden;
  187. overflow-y: auto;
  188. >.craid {
  189. // width: 100%;
  190. border-radius: 0!important;
  191. border-color: none;
  192. border: none;
  193. z-index: 10;
  194. height: 5.625rem;
  195. padding: 0 2.5625rem 0 2.5625rem;
  196. display: flex;
  197. justify-content: space-between;
  198. flex-wrap: wrap;
  199. align-items: center;
  200. border-bottom: 1px solid rgba(59, 111, 142, 1.00);
  201. >.craid_data {
  202. display: flex;
  203. flex-direction: column;
  204. justify-content: center;
  205. align-items: start;
  206. >p {
  207. color: rgb(0, 0, 0);
  208. font-family: Noto Sans SC;
  209. font-size: 18px;
  210. font-weight: 700;
  211. }
  212. >span {
  213. color: rgb(0, 0, 0);
  214. font-family: Noto Sans SC;
  215. font-size: 13px;
  216. font-weight: 500;
  217. }
  218. }
  219. >.aircraft {
  220. width: 1.75rem;
  221. height: 1.75rem;
  222. background: url('../../static/hang.png') no-repeat;
  223. background-size: 100% 100%;
  224. }
  225. }
  226. }
  227. }
  228. </style>