index.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. <template>
  2. <view class="app-content">
  3. <view class="nav">
  4. <liu-search @fall="fall" @input="input" @change="change"
  5. @changes='changes'></liu-search>
  6. </view>
  7. <view class="title">
  8. <!-- <view class="date">
  9. <uni-datetime-picker type="date" :clear-icon="false" v-model="date" @change="maskClick" />
  10. </view> -->
  11. <view class="inOut">
  12. <uni-data-checkbox v-model="inOut" :localdata="inOutList" @change="inOutChange"></uni-data-checkbox>
  13. </view>
  14. </view>
  15. <scroll-view class="content" scroll-y="true" @scrolltolower="scrolltolower">
  16. <!-- <view class="craid" v-for="(item,index) in flightList" :key="index" @tap="toIndex(item)">
  17. <view class="craid_data">
  18. {{item.carrierFlights}}
  19. </view>
  20. <view class="craid_data">
  21. {{item.carrierFlightsDate}}
  22. </view>
  23. </view> -->
  24. <uni-list>
  25. <uni-list-item v-for="(item,index) in flightList" :key="index" :clickable= 'true' @click="toIndex(item)">
  26. <template v-slot:body>
  27. <view style="display: flex;flex-direction: row;justify-content: space-between;">
  28. <view style="margin-right: 30px;width: 80px;">{{item.carrierFlights}}</view>
  29. <view style="margin-right: 30px;width: 90px;">{{item.outAirport}} - {{item.landAirport}}</view>
  30. <view>{{item.carrierFlightsDate}}</view>
  31. </view>
  32. </template>
  33. </uni-list-item>
  34. </uni-list>
  35. </scroll-view>
  36. <!-- <view class="content" v-if="flightList.length">
  37. <button class="craid" v-for="(item,index) in flightList" :key="index" @tap="toIndex(item)">
  38. <view class="craid_data">
  39. <p>{{item.carrierFlights}}</p>
  40. <span>{{item.carrierFlightsDate}}</span>
  41. </view>
  42. <view class="craid_data">
  43. <p>{{item.outAirport}}</p>
  44. <span>{{item.scheduleTakeOffTime}}</span>
  45. </view>
  46. <view class="aircraft">To</view>
  47. <view class="craid_data">
  48. <p>{{item.landAirport}}</p>
  49. <span>{{item.scheduleLandInTime}}</span>
  50. </view>
  51. </button>
  52. </view> -->
  53. <!-- 提示信息和下拉弹窗 -->
  54. <mask-model :headername="headername" :typeShow="typeShow" :tabname="tabname" ref="showMask" btnType="1"
  55. @confirm="confirm" @cancel="cancel" titleColoe="#666666" cancelColor="#666666" confirmColor="#007AFF"
  56. :maskTitle="maskTitle"></mask-model>
  57. </view>
  58. </template>
  59. <script>
  60. import Nav from '../../components/header/nav.vue'
  61. import maskModel from '../../components/mask-model/mask-model.vue'
  62. import {
  63. Format
  64. } from '@/components/utils/validate'
  65. export default {
  66. data() {
  67. return {
  68. // date:null,
  69. historyList: [],
  70. maskTitle: '请核对录入的航班号或行李号是否正确',
  71. tabname: '', //按钮名称
  72. typeShow: true,
  73. headername: '请核对信息',
  74. value:null,
  75. flightList:[],
  76. inOut:1,
  77. inOutList: [ {
  78. text: '离港',
  79. value: 1
  80. }, {
  81. text: '进港',
  82. value: 2
  83. }],
  84. page:1
  85. }
  86. },
  87. created(option) {},
  88. onLoad() {},
  89. onUnload() {uni.$off("scancodemsg");},
  90. onShow() {
  91. // this.date = this.datatime()
  92. uni.$on("scancodemsg", (data) => {
  93. if (data.msg.length > 9) {
  94. uni.navigateTo({
  95. url: "/pages/detail/index?luggageNum=" + data.msg
  96. })
  97. }
  98. });
  99. this.getDataList()
  100. },
  101. onHide() {uni.$off("scancodemsg");},
  102. mounted() {
  103. },
  104. components: {
  105. Nav
  106. },
  107. methods: {
  108. // maskClick(e){
  109. // console.log(e)
  110. // },
  111. inOutChange(){
  112. this.page = 1;
  113. this.flightList = [];
  114. this.getDataList();
  115. },
  116. scrolltolower(){
  117. this.getDataList()
  118. },
  119. toIndex(item){
  120. this.$storage.setJson('searchData',item);
  121. // this.$storage.set('flightDate',item.carrierFlightsDate);
  122. uni.switchTab({
  123. url: "/pages/index/index"
  124. })
  125. },
  126. fall() {
  127. uni.navigateBack({
  128. delta: 1
  129. })
  130. },
  131. changes() {
  132. // uni.redirectTo({
  133. // url: "/pages/myrecords/index"
  134. // })
  135. },
  136. //搜索内容
  137. change(e) {
  138. this.value = e
  139. this.typeShow = false
  140. this.maskTitle = '请核对录入的航班号或行李号是否正确'
  141. this.headername = '请核对信息'
  142. this.$refs.showMask.show();
  143. },
  144. confirm: function() { //确定按钮
  145. if(this.value.length>9){
  146. uni.navigateTo({
  147. url: "/pages/detail/index?luggageNum=" + Number(this.value)
  148. })
  149. }
  150. else if(this.value.length<=9 && this.value.length>0){
  151. this.getFlightData(this.value)
  152. this.cancel()
  153. }
  154. else{
  155. this.flightList = [];
  156. this.page = 1;
  157. this.getDataList()
  158. }
  159. },
  160. async getFlightData(num) {
  161. let data = {
  162. "serviceId": 3000,
  163. "page": 1,
  164. "pageSize": 20,
  165. "dataContent": [{
  166. "carrierFlights":num
  167. }],
  168. "event": "0"
  169. }
  170. await this.$http.httpPost('/openApi/query', data).then(res => {
  171. if (res.code == "0" && res.returnData.length>0) {
  172. this.$storage.remove('searchData')
  173. this.$storage.remove('flightDate');
  174. if(res.returnData.length==1){
  175. if(res.returnData[0].scheduleTakeOffTime){
  176. res.returnData[0].scheduleTakeOffTime = res.returnData[0].scheduleTakeOffTime.split("T")[1]
  177. }
  178. if(res.returnData[0].scheduleLandInTime){
  179. res.returnData[0].scheduleLandInTime = res.returnData[0].scheduleLandInTime.split("T")[1]
  180. }
  181. this.$storage.setJson('searchData',res.returnData[0]);
  182. uni.switchTab({
  183. url: "/pages/index/index"
  184. })
  185. }
  186. else {
  187. this.flightList = res.returnData
  188. this.flightList.map(item => {
  189. if(item.scheduleTakeOffTime){
  190. item.scheduleTakeOffTime = item.scheduleTakeOffTime.split("T")[1]
  191. }
  192. else{
  193. item.scheduleTakeOffTime = "-"
  194. }
  195. if(item.scheduleLandInTime){
  196. item.scheduleLandInTime = item.scheduleLandInTime.split("T")[1]
  197. }
  198. else{
  199. item.scheduleLandInTime = "-"
  200. }
  201. })
  202. }
  203. }
  204. else if(res.code == "0" && res.returnData.length==0){
  205. uni.showToast({
  206. icon:'none',
  207. title: "没有更多信息",
  208. duration: 5000
  209. });
  210. }
  211. else{
  212. this.$scanAudio.src = "../../static/hqhb.mp3"
  213. this.$scanAudio.play()
  214. uni.showToast({
  215. icon:'none',
  216. title: "无此航班号信息,请确认航班号",
  217. duration: 5000
  218. });
  219. }
  220. })
  221. },
  222. async getDataList(){
  223. let data = {
  224. "serviceId": 3010,
  225. "page": this.page,
  226. "pageSize": 20,
  227. "dataContent": [{
  228. }],
  229. "event": "0"
  230. }
  231. if(this.inOut == 1){
  232. data.dataContent = [{
  233. "outAirport": this.$storage.get("airportName")
  234. }]
  235. }
  236. else{
  237. data.dataContent = [{
  238. "landAirport": this.$storage.get("airportName")
  239. }]
  240. }
  241. await this.$http.httpPost('/openApi/query', data).then(res => {
  242. if (res.code == "0" && res.returnData.length>0) {
  243. this.$storage.remove('searchData')
  244. this.$storage.remove('flightDate');
  245. let list = res.returnData
  246. list.map(item => {
  247. if(item.scheduleTakeOffTime){
  248. item.scheduleTakeOffTime = item.scheduleTakeOffTime.split("T")[1]
  249. }
  250. else{
  251. item.scheduleTakeOffTime = "-"
  252. }
  253. if(item.scheduleLandInTime){
  254. item.scheduleLandInTime = item.scheduleLandInTime.split("T")[1]
  255. }
  256. else{
  257. item.scheduleLandInTime = "-"
  258. }
  259. this.flightList.push(item)
  260. })
  261. this.page++
  262. }
  263. })
  264. },
  265. cancel(){},
  266. //input事件
  267. input(e) {
  268. console.log('搜索框输入的内容:' + e)
  269. if(e.length==0){
  270. this.flightList = [];
  271. this.page = 1;
  272. this.getDataList()
  273. }
  274. },
  275. datatime() {
  276. let dataTime = Format("yyyy-MM-dd", new Date());
  277. return dataTime
  278. },
  279. },
  280. }
  281. </script>
  282. <style lang="scss" scoped>
  283. .app-content {
  284. height:100vh;
  285. overflow: hidden;
  286. >.nav {
  287. width: 100%;
  288. position: relative;
  289. display: flex;
  290. margin-top: 1.875rem;
  291. height: 3.5rem;
  292. >.log {
  293. width: .375rem;
  294. height: .75rem;
  295. font-size: .75rem;
  296. position: absolute;
  297. left: 1.5rem;
  298. background: url('../../static/ico@1x.png') no-repeat;
  299. background-size: 100% 100%;
  300. }
  301. }
  302. >.title{
  303. height: 3rem;
  304. padding: 0 35px;
  305. box-sizing: border-box;
  306. >.date{
  307. margin-bottom: 15px;
  308. }
  309. }
  310. >.content{
  311. height: calc(100vh - 9.5rem);
  312. >.craid {
  313. // width: 100%;
  314. border-radius: 0!important;
  315. border-color: none;
  316. border: none;
  317. z-index: 10;
  318. height: 5.625rem;
  319. padding: 0 2.5625rem 0 2.5625rem;
  320. display: flex;
  321. justify-content: space-between;
  322. flex-wrap: wrap;
  323. align-items: center;
  324. border-bottom: 1px solid rgba(59, 111, 142, 1.00);
  325. >.craid_data {
  326. display: flex;
  327. flex-direction: column;
  328. justify-content: center;
  329. align-items: start;
  330. >p {
  331. color: rgb(0, 0, 0);
  332. font-family: Noto Sans SC;
  333. font-size: 18px;
  334. font-weight: 700;
  335. }
  336. >span {
  337. color: rgb(0, 0, 0);
  338. font-family: Noto Sans SC;
  339. font-size: 13px;
  340. font-weight: 500;
  341. }
  342. }
  343. >.aircraft {
  344. width: 1.75rem;
  345. height: 1.75rem;
  346. background: url('../../static/hang.png') no-repeat;
  347. background-size: 100% 100%;
  348. }
  349. }
  350. }
  351. }
  352. </style>