index.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. <template>
  2. <view class="app-content">
  3. <view class="header">
  4. <view class="log" @tap="fall"></view>{{ navname }}
  5. </view>
  6. <view class="nav">
  7. <view :class="action === index ? 'nav_lists': 'nav_list'" v-for="(item, index) in list" :key="index"
  8. @tap="lop(index)">{{item.name}}</view>
  9. </view>
  10. <view class="content">
  11. <view class="content_bootom" style="top:0">
  12. <scroll-view scroll-y="true" class="scroll-Y">
  13. <view class="up" v-for="(item, index) in listdata" :key="index">
  14. <view class="list" @tap="toDetail(item.luggageNum)">
  15. <p>{{ item.luggageNum }}</p>
  16. </view>
  17. <view class="normal">
  18. {{item.carrierFlightsDate!=null?item.carrierFlightsDate:"-"}}
  19. </view>
  20. <view class="normal">
  21. {{item.carrierFlights!=null?item.carrierFlights:"-"}}
  22. </view>
  23. </view>
  24. </scroll-view>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import Nav from '../../components/header/nav.vue'
  31. export default {
  32. data() {
  33. return {
  34. navname: '我的记录',
  35. action: 0,
  36. list: [{
  37. name: '分拣',
  38. type: 'SORT'
  39. }, {
  40. name: '装车',
  41. type: 'LOAD'
  42. }, {
  43. name: '装机',
  44. type: 'INFL'
  45. }, {
  46. name: '卸机',
  47. type: 'UNLOAD'
  48. }, {
  49. name: '到达',
  50. type: 'ARRIVED'
  51. }, {
  52. name: '提取',
  53. type: 'extract'
  54. }],
  55. listdata: [],
  56. nodeCode:null
  57. }
  58. },
  59. created(option) {},
  60. onLoad(option) {
  61. if(option.nodeCode){
  62. this.list.map((item,index) =>{
  63. if(item.type==option.nodeCode){
  64. this.action = index
  65. }
  66. })
  67. this.nodeCode = option.nodeCode
  68. this.getList()
  69. }
  70. else{
  71. this.nodeCode = this.list[this.action].type
  72. this.getList()
  73. }
  74. },
  75. onUnload() {},
  76. onShow() {
  77. if(this.nodeCode){
  78. this.getList()
  79. }
  80. },
  81. mounted() {},
  82. components: {
  83. Nav
  84. },
  85. methods: {
  86. uplist() {
  87. uni.redirectTo({
  88. url: "/pages/loadingdetails/index"
  89. })
  90. },
  91. lop(index) {
  92. this.action = index
  93. this.nodeCode = this.list[index].type
  94. this.getList()
  95. },
  96. async getList() {
  97. let data = {
  98. "serviceId": 3008,
  99. "page": 1,
  100. "pageSize": 9999,
  101. "dataContent": [{
  102. "agentNumber": this.$storage.getJson("users").user_name,
  103. "nodeCode": this.nodeCode
  104. }]
  105. }
  106. await this.$http.httpPost('/openApi/query', data).then(res => {
  107. if (res.code == "0") {
  108. this.listdata = res.returnData
  109. } else {
  110. uni.showToast({
  111. icon: 'none',
  112. title: "查询信息失败",
  113. duration: 5000
  114. });
  115. }
  116. })
  117. },
  118. toDetail(luggageNum){
  119. uni.navigateTo({
  120. url: "/pages/detail/index?luggageNum="+luggageNum
  121. })
  122. },
  123. fall() {
  124. uni.navigateBack({
  125. delta:1
  126. })
  127. }
  128. },
  129. }
  130. </script>
  131. <style lang="scss" scoped>
  132. .app-content {
  133. height: 100vh;
  134. overflow: hidden;
  135. >.header {
  136. width: 100%;
  137. height: 4.375rem;
  138. display: flex;
  139. justify-content: center;
  140. align-items: center;
  141. // background: rgba(49,85,99,1);
  142. color: rgb(16, 17, 22);
  143. font-family: Noto Sans SC;
  144. font-size: 1rem;
  145. position: relative;
  146. >.log {
  147. width: .375rem;
  148. height: .75rem;
  149. font-size: .75rem;
  150. position: absolute;
  151. left: 1.5rem;
  152. background: url('../../static/ico@1x.png') no-repeat;
  153. background-size: 100% 100%;
  154. }
  155. >.up {
  156. width: .8456rem;
  157. height: .8456rem;
  158. position: absolute;
  159. right: 1.5rem;
  160. background: url('../../static/search.png') no-repeat;
  161. background-size: 100% 100%;
  162. // color: rgb(37, 121, 160);
  163. // font-family: Noto Sans SC;
  164. // font-size: .875rem;
  165. // font-weight: 500;
  166. }
  167. }
  168. >.nav {
  169. height: 2rem;
  170. display: flex;
  171. align-items: center;
  172. padding: 0 .75rem 0 .75rem;
  173. >.nav_list {
  174. margin: 0 .75rem 0 .75rem;
  175. color: rgb(16, 17, 22);
  176. font-family: Noto Sans SC;
  177. font-size: 14px;
  178. height: 100%;
  179. }
  180. >.nav_lists {
  181. margin: 0 .75rem 0 .75rem;
  182. color: rgb(37, 121, 160);
  183. font-family: Noto Sans SC;
  184. font-size: 14px;
  185. font-size: 14px;
  186. height: 100%;
  187. border-bottom: 2px solid rgb(37, 121, 160);
  188. }
  189. }
  190. >.content {
  191. width: 100%;
  192. height: calc(100vh - 3.5rem);
  193. position: relative;
  194. // margin-top: 2.5rem;
  195. // overflow: hidden;
  196. // background: rgb(49, 85, 99);
  197. >.content_top {
  198. width: 100%;
  199. // background: rgb(49, 85, 99);
  200. padding-bottom: 1.3125rem;
  201. >.craid {
  202. // width: 100%;
  203. height: 5.625rem;
  204. padding: 0 2.5625rem 0 2.5625rem;
  205. display: flex;
  206. justify-content: space-between;
  207. flex-wrap: wrap;
  208. align-items: center;
  209. >.craid_data {
  210. display: flex;
  211. flex-direction: column;
  212. justify-content: center;
  213. align-items: start;
  214. >p {
  215. color: rgb(255, 255, 255);
  216. font-family: Noto Sans SC;
  217. font-size: 18px;
  218. font-weight: 700;
  219. }
  220. >span {
  221. color: rgb(255, 255, 255);
  222. font-family: Noto Sans SC;
  223. font-size: 13px;
  224. font-weight: 500;
  225. }
  226. }
  227. >.aircraft {
  228. width: 1.75rem;
  229. height: 1.75rem;
  230. background: url('../../static/hang.png') no-repeat;
  231. background-size: 100% 100%;
  232. }
  233. }
  234. }
  235. >.content_bootom {
  236. width: 100%;
  237. // height: calc(100vh - 20.9375rem - 4.375rem);
  238. padding-bottom: 0;
  239. position: absolute;
  240. bottom: 0;
  241. top: 20.75rem;
  242. // border-radius: 6px 6px 0px 0px;
  243. overflow: hidden;
  244. background: rgb(255, 255, 255);
  245. padding: 0 10px;
  246. box-sizing: border-box;
  247. padding-left: 1rem;
  248. .up {
  249. width: 100%;
  250. display: flex;
  251. align-items: center;
  252. justify-content: space-between;
  253. border-bottom: 1px solid rgb(238, 238, 238);
  254. box-sizing: border-box;
  255. // transform: all 3s;
  256. >.down_up {
  257. width: .875rem;
  258. height: .875rem;
  259. background: url('../../static/xia.png') no-repeat;
  260. background-size: 100% 100%;
  261. }
  262. >.error{
  263. color:red
  264. }
  265. >.normal{
  266. color:#4682b4
  267. }
  268. >.list {
  269. position: relative;
  270. height: 3rem;
  271. display: flex;
  272. align-items: center;
  273. transform: all 3s;
  274. right: 0;
  275. color: rgb(0, 0, 0);
  276. font-family: Noto Sans SC;
  277. font-size: 16px;
  278. font-weight: 500;
  279. }
  280. >.delete {
  281. width: 3.75rem;
  282. height: 3.75rem;
  283. background: rgb(237, 101, 101);
  284. display: flex;
  285. align-items: center;
  286. justify-content: center;
  287. position: relative;
  288. right: -3.75rem;
  289. transform: all 3s;
  290. >.log {
  291. width: .875rem;
  292. height: .875rem;
  293. background: url('../../static/vector@1x.png') no-repeat;
  294. background-size: 100% 100%;
  295. }
  296. }
  297. }
  298. .scroll-Y {
  299. // height: calc(100% - 2.5rem - 2.75rem - 2.25rem - 2.25rem);
  300. height: calc(100% - 2.5rem - 2.75rem);
  301. }
  302. .but {
  303. width: 20.5625rem;
  304. height: 2.5rem;
  305. background: linear-gradient(179.10deg, rgba(51, 161, 165, 1.00) 11.326%, rgba(59, 111, 142, 1.00) 119.032%, rgba(59, 111, 142, 1.00) 119.032%, rgba(59, 111, 142, 1.00) 119.032%);
  306. border-radius: .25rem;
  307. color: rgb(255, 255, 255);
  308. font-family: Noto Sans SC;
  309. font-size: 1rem;
  310. margin: 0 auto;
  311. display: flex;
  312. align-items: center;
  313. justify-content: center;
  314. margin-top: 0.25rem;
  315. margin-bottom: 2.25rem;
  316. }
  317. }
  318. }
  319. }
  320. </style>