index.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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() {},
  49. onShow() {
  50. uni.$on("scancodemsg", (data) => {
  51. if (data.msg.length > 9) {
  52. uni.navigateTo({
  53. url: "/pages/detail/index?luggageNum=" + Number(data.msg)
  54. })
  55. }
  56. });
  57. },
  58. mounted() {
  59. uni.$off("scancodemsg");
  60. },
  61. components: {
  62. Nav
  63. },
  64. methods: {
  65. toIndex(item){
  66. console.log(item)
  67. this.$storage.setJson('searchData',item);
  68. // this.$storage.set('flightDate',item.carrierFlightsDate);
  69. uni.switchTab({
  70. url: "/pages/index/index"
  71. })
  72. },
  73. fall() {
  74. uni.navigateBack({
  75. delta: 1
  76. })
  77. },
  78. changes() {
  79. // uni.redirectTo({
  80. // url: "/pages/myrecords/index"
  81. // })
  82. },
  83. //搜索内容
  84. change(e) {
  85. this.value = e
  86. this.typeShow = false
  87. this.maskTitle = '请核对录入的航班号或行李号是否正确'
  88. this.headername = '请核对信息'
  89. this.$refs.showMask.show();
  90. },
  91. confirm: function() { //确定按钮
  92. if(this.value.length>9){
  93. uni.navigateTo({
  94. url: "/pages/detail/index?luggageNum=" + Number(this.value)
  95. })
  96. }
  97. else{
  98. this.getFlightData(this.value)
  99. this.cancel()
  100. }
  101. },
  102. async getFlightData(num) {
  103. let data = {
  104. "serviceId": 3000,
  105. "page": 1,
  106. "pageSize": 10,
  107. "dataContent": [{
  108. "carrierFlights":num
  109. }],
  110. "event": "0"
  111. }
  112. await this.$http.httpPost('/openApi/query', data).then(res => {
  113. if (res.code == "0" && res.returnData.length>0) {
  114. this.$storage.remove('searchData')
  115. this.$storage.remove('flightDate');
  116. if(res.returnData.length==1){
  117. if(res.returnData[0].scheduleTakeOffTime){
  118. res.returnData[0].scheduleTakeOffTime = res.returnData[0].scheduleTakeOffTime.split("T")[1]
  119. }
  120. if(res.returnData[0].scheduleLandInTime){
  121. res.returnData[0].scheduleLandInTime = res.returnData[0].scheduleLandInTime.split("T")[1]
  122. }
  123. this.$storage.setJson('searchData',res.returnData[0]);
  124. uni.switchTab({
  125. url: "/pages/index/index"
  126. })
  127. }
  128. else {
  129. this.flightList = res.returnData
  130. this.flightList.map(item => {
  131. if(item.scheduleTakeOffTime){
  132. item.scheduleTakeOffTime = item.scheduleTakeOffTime.split("T")[1]
  133. }
  134. else{
  135. item.scheduleTakeOffTime = "-"
  136. }
  137. if(item.scheduleLandInTime){
  138. item.scheduleLandInTime = item.scheduleLandInTime.split("T")[1]
  139. }
  140. else{
  141. item.scheduleLandInTime = "-"
  142. }
  143. })
  144. }
  145. }
  146. else{
  147. uni.showToast({
  148. icon:'none',
  149. title: "无此航班号信息,请确认航班号",
  150. duration: 5000
  151. });
  152. }
  153. })
  154. },
  155. cancel(){},
  156. //input事件
  157. input(e) {
  158. console.log('搜索框输入的内容:' + e)
  159. },
  160. },
  161. }
  162. </script>
  163. <style lang="scss" scoped>
  164. .app-content {
  165. >.nav {
  166. width: 100%;
  167. position: relative;
  168. display: flex;
  169. margin-top: 1.875rem;
  170. height: 10rem;
  171. >.log {
  172. width: .375rem;
  173. height: .75rem;
  174. font-size: .75rem;
  175. position: absolute;
  176. left: 1.5rem;
  177. background: url('../../static/ico@1x.png') no-repeat;
  178. background-size: 100% 100%;
  179. }
  180. }
  181. >.content{
  182. height: calc(100vh - 13rem);
  183. overflow-x: hidden;
  184. overflow-y: auto;
  185. >.craid {
  186. // width: 100%;
  187. border-radius: 0;
  188. border: none;
  189. z-index: 10;
  190. height: 5.625rem;
  191. padding: 0 2.5625rem 0 2.5625rem;
  192. display: flex;
  193. justify-content: space-between;
  194. flex-wrap: wrap;
  195. align-items: center;
  196. border-bottom: 1px solid #000;
  197. >.craid_data {
  198. display: flex;
  199. flex-direction: column;
  200. justify-content: center;
  201. align-items: start;
  202. >p {
  203. color: rgb(0, 0, 0);
  204. font-family: Noto Sans SC;
  205. font-size: 18px;
  206. font-weight: 700;
  207. }
  208. >span {
  209. color: rgb(0, 0, 0);
  210. font-family: Noto Sans SC;
  211. font-size: 13px;
  212. font-weight: 500;
  213. }
  214. }
  215. >.aircraft {
  216. width: 1.75rem;
  217. height: 1.75rem;
  218. background: url('../../static/hang.png') no-repeat;
  219. background-size: 100% 100%;
  220. }
  221. }
  222. }
  223. }
  224. </style>