index.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <view class="app-content">
  3. <view class="header">
  4. <view class="title">
  5. 行李路径
  6. </view>
  7. <view class="log" @tap="fall"></view>
  8. </view>
  9. <view class="content">
  10. <uni-section class="mb-10" :title="'行李编号:'+luggageNum" type="circle"></uni-section>
  11. <uni-section class="mb-10" :title="'航班号:'+carrierFlights" type="circle"></uni-section>
  12. <uni-section class="mb-10" :title="'航班日期:'+carrierFlightsDate" type="circle"></uni-section>
  13. <y-steps :stepList="stepList"></y-steps>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. import YSteps from '@/components/YSteps/YSteps.vue'
  19. export default {
  20. components: { YSteps },
  21. data() {
  22. return {
  23. luggageNum:null,
  24. carrierFlightsDate:null,
  25. carrierFlights:null,
  26. active: 0,
  27. stepList: [
  28. {
  29. date: '值机', // 左侧日期 -- 必选
  30. time: '-', // 左侧时间 -- 必选
  31. info: '', // 右侧内容 -- 可选
  32. index: '1', // 中间 Index -- 可选
  33. isFinished: false, // 是否已完成(完成 index 为 √)-- 可选
  34. isActive: true, // 是否为当前节点 Active(当前节点 即使完成 index 也不会显示 √)-- 可选
  35. isShowSlot: true // 右侧是否有 Slot(显示在 右侧内容下方)-- 可选
  36. },
  37. {
  38. date: '安检',
  39. time: '-',
  40. info: '',
  41. index: '2',
  42. isFinished: false,
  43. isActive: true,
  44. isShowSlot: true
  45. },
  46. {
  47. date: '分拣',
  48. time: '-',
  49. info: '',
  50. index: '3',
  51. isFinished: false,
  52. isActive: true,
  53. isShowSlot: true
  54. },
  55. {
  56. date: '装车',
  57. time: '-',
  58. info: '',
  59. index: '4',
  60. isFinished: false,
  61. isActive: true,
  62. isShowSlot: true
  63. },
  64. {
  65. date: '装机',
  66. time: '-',
  67. info: '',
  68. index: '5',
  69. isFinished: false,
  70. isActive: true,
  71. isShowSlot: true
  72. },
  73. {
  74. date: '到达',
  75. time: '-',
  76. info: '',
  77. index: '6',
  78. isFinished: false,
  79. isActive: true,
  80. isShowSlot: true
  81. },
  82. {
  83. date: '卸机',
  84. time: '-',
  85. info: '',
  86. index: '7',
  87. isFinished: false,
  88. isActive: true,
  89. isShowSlot: true
  90. }
  91. ]
  92. }
  93. },
  94. onLoad(option) {
  95. this.luggageNum = option.luggageNum;
  96. this.carrierFlights = option.carrierFlights;
  97. this.carrierFlightsDate = option.carrierFlightsDate;
  98. this.getNode()
  99. },
  100. methods: {
  101. fall() {
  102. uni.navigateBack({
  103. delta: 1
  104. })
  105. },
  106. async getNode(){
  107. let data = {
  108. "serviceId": 3009,
  109. "dataContent": {
  110. "luggageNum":this.luggageNum,
  111. "carrierFlights":this.carrierFlights,
  112. "carrierFlightsDate":this.carrierFlightsDate
  113. },
  114. "event": "0"
  115. }
  116. await this.$http.httpPost('/openApi/query', data).then(res => {
  117. if (res.code == "0" && res.returnData.length > 0) {
  118. console.log(res)
  119. let luggageData = res.returnData[0]
  120. if(luggageData.checkInDate!=null){
  121. this.stepList[0].info = luggageData.checkInDate;
  122. this.stepList[0].time = luggageData.checkInlocation?luggageData.checkInlocation:"-";
  123. this.stepList[0].isFinished = true;
  124. this.stepList[0].isActive = false;
  125. }
  126. if(luggageData.security_check_time!=null){
  127. this.stepList[1].info = luggageData.security_check_time;
  128. this.stepList[1].time = luggageData.security_location?luggageData.security_location:"-";
  129. this.stepList[1].isFinished = true;
  130. this.stepList[1].isActive = false;
  131. }
  132. if(luggageData.sorting_time!=null){
  133. this.stepList[2].info = luggageData.sorting_time;
  134. this.stepList[2].time = luggageData.sorting_location?luggageData.sorting_location:"-";
  135. this.stepList[2].isFinished = true;
  136. this.stepList[2].isActive = false;
  137. }
  138. if(luggageData.loading_time!=null){
  139. this.stepList[3].info = luggageData.loading_time;
  140. this.stepList[3].time = luggageData.installationAddress?luggageData.installationAddress:"-";
  141. this.stepList[3].isFinished = true;
  142. this.stepList[3].isActive = false;
  143. }
  144. if(luggageData.installation_time!=null){
  145. this.stepList[4].info = luggageData.installation_time;
  146. this.stepList[4].time = luggageData.installation_location?luggageData.installation_location:"-";
  147. this.stepList[4].isFinished = true;
  148. this.stepList[4].isActive = false;
  149. }
  150. if(luggageData.arrivedtime!=null){
  151. this.stepList[5].info = luggageData.arrivedtime;
  152. this.stepList[5].time = luggageData.arrviedLocation?luggageData.arrviedLocation:"-";
  153. this.stepList[5].isFinished = true;
  154. this.stepList[5].isActive = false;
  155. }
  156. if(luggageData.unloadtime!=null){
  157. this.stepList[6].info = luggageData.unloadtime;
  158. this.stepList[6].time = luggageData.unloadLocation?luggageData.unloadLocation:"-";
  159. this.stepList[6].isFinished = true;
  160. this.stepList[6].isActive = false;
  161. }
  162. }
  163. })
  164. },
  165. }
  166. }
  167. </script>
  168. <style lang="scss" scoped>
  169. .app-content {
  170. >.header {
  171. width: 100%;
  172. height: 3.375rem;
  173. padding-top: 15px;
  174. display: flex;
  175. justify-content: center;
  176. align-items: center;
  177. background: rgba(49,85,99,1);
  178. color: rgb(255, 255, 255);
  179. font-family: Noto Sans SC;
  180. font-size: 1rem;
  181. position: fixed;
  182. left: 0;
  183. top: 0;
  184. z-index: 1;
  185. >.log {
  186. width: .375rem;
  187. height: .75rem;
  188. font-size: .75rem;
  189. position: absolute;
  190. left: 1.5rem;
  191. background: url('../../static/ico@1x.png') no-repeat;
  192. background-size: 100% 100%;
  193. }
  194. >.up {
  195. width: .8456rem;
  196. height: .8456rem;
  197. position: absolute;
  198. right: 1.5rem;
  199. background: url('../../static/search.png') no-repeat;
  200. background-size: 100% 100%;
  201. // color: rgb(37, 121, 160);
  202. // font-family: Noto Sans SC;
  203. // font-size: .875rem;
  204. // font-weight: 500;
  205. }
  206. }
  207. >.content {
  208. box-sizing: border-box;
  209. width: 100%;
  210. // height: calc(100vh - 20.9375rem - 4.375rem);
  211. padding-bottom: 0;
  212. padding-left: 50px;
  213. position: absolute;
  214. bottom: 0;
  215. top: 5rem;
  216. border-radius: 6px 6px 0px 0px;
  217. overflow: hidden;
  218. background: rgb(255, 255, 255);
  219. }
  220. }
  221. </style>