index.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. <template>
  2. <view class="app-content">
  3. <Navs :navname.sync="navname" @fall="fall"></Navs>
  4. <img :src="icon" alt="" class="tuku">
  5. <view class="content">
  6. <view class="content_bootom" style="top:0">
  7. <scroll-view scroll-y="true" class="scroll-Y">
  8. <view class="up" v-for="(item, index) in listdata" :key="index" @tap="toDetail(item.ID)">
  9. <view class="list">
  10. <p>{{ item.location_descride }}</p>
  11. </view>
  12. <view class="list">
  13. {{item.processing_time}}
  14. </view>
  15. </view>
  16. </scroll-view>
  17. </view>
  18. </view>
  19. <view class="up" @tap="toPage">录入</view>
  20. </view>
  21. </template>
  22. <script>
  23. import Navs from '../../components/header/navs.vue'
  24. export default {
  25. data() {
  26. return {
  27. current:0,
  28. isShow: true,
  29. navname: '脱牌行李',
  30. icon: 'static/beijing.png',
  31. action: true,
  32. listdata: [],
  33. airport: null,
  34. currentLuggageNum: null,
  35. }
  36. },
  37. created(option) {},
  38. onLoad(option) {
  39. this.airport = this.$storage.get("airportName")
  40. },
  41. onUnload() {
  42. uni.$off("scancodemsg");
  43. },
  44. onShow() {
  45. if (this.airport) {
  46. this.getluggageList(this.airport)
  47. }
  48. },
  49. onHide() {
  50. },
  51. mounted() {},
  52. computed: {},
  53. components: {
  54. Navs,
  55. },
  56. methods: {
  57. async getluggageList(airport) {
  58. console.log(this.$storage.getJson("users"))
  59. let data = {
  60. "serviceId": 3013,
  61. "dataContent": [{
  62. "agentNumber": this.$storage.getJson("users").user_name
  63. }],
  64. "event": "0"
  65. }
  66. await this.$http.httpPost('/openApi/query', data).then(res => {
  67. if (res.code == "0") {
  68. this.listdata = res.returnData;
  69. }
  70. })
  71. },
  72. toDetail(luggageNum){
  73. uni.navigateTo({
  74. url: "/pages/delisting/info?id="+luggageNum
  75. })
  76. },
  77. toPage() {
  78. uni.navigateTo({
  79. url: "/pages/delisting/info"
  80. })
  81. },
  82. fall() {
  83. uni.navigateBack({
  84. delta: 1
  85. })
  86. },
  87. clear() {
  88. this.currentLuggageNum = null
  89. }
  90. },
  91. }
  92. </script>
  93. <style lang="scss" scoped>
  94. .app-content {
  95. position: relative;
  96. background: rgb(49, 85, 99);
  97. width: 100vw;
  98. height: 100vh;
  99. overflow: hidden;
  100. >.up {
  101. position: fixed;
  102. bottom: 10px;
  103. left: calc((100% - 20.5625rem) / 2);
  104. width: 20.5625rem;
  105. height: 3rem;
  106. 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%);
  107. border-radius: .25rem;
  108. color: rgb(255, 255, 255);
  109. font-family: Noto Sans SC;
  110. font-size: 1rem;
  111. margin: 0 auto;
  112. display: flex;
  113. align-items: center;
  114. justify-content: center;
  115. }
  116. >.tuku {
  117. position: absolute;
  118. z-index: -1;
  119. width: 100%;
  120. top: -250px;
  121. let: 20px;
  122. }
  123. >.scanning {
  124. // height: 12rem;
  125. padding: 0 1.5rem 0 1.5rem;
  126. opacity: 1;
  127. transition: all 3s;
  128. .scanning_cds {
  129. width: 100%;
  130. height: 3rem;
  131. opacity: 1;
  132. transition: all 3s;
  133. background: rgb(51, 161, 165);
  134. margin-top: 1rem;
  135. margin-bottom: .5rem;
  136. border-radius: 4px;
  137. display: flex;
  138. justify-content: center;
  139. align-items: center;
  140. color: rgb(255, 255, 255);
  141. font-family: Noto Sans SC;
  142. font-size: 16px;
  143. >.log {
  144. width: .875rem;
  145. height: .875rem;
  146. background: url('../../static/saoma.png') no-repeat;
  147. background-size: 100% 100%;
  148. margin-left: 1rem;
  149. }
  150. >.log_l {
  151. width: .125rem;
  152. height: 1.3125rem;
  153. margin-left: 4rem;
  154. margin-right: .7rem;
  155. background: rgb(255, 255, 255);
  156. }
  157. }
  158. }
  159. >.content {
  160. width: 100%;
  161. height: calc(100vh - 8rem);
  162. position: relative;
  163. margin-top: .5rem;
  164. // overflow: hidden;
  165. // background: rgb(49, 85, 99);
  166. >.content_top {
  167. width: 100%;
  168. // background: rgb(49, 85, 99);
  169. padding-bottom: 1.3125rem;
  170. >.craid {
  171. // width: 100%;
  172. height: 5.625rem;
  173. padding: 0 2.5625rem 0 2.5625rem;
  174. display: flex;
  175. justify-content: space-between;
  176. flex-wrap: wrap;
  177. align-items: center;
  178. >.craid_data {
  179. display: flex;
  180. flex-direction: column;
  181. justify-content: center;
  182. align-items: start;
  183. >p {
  184. color: rgb(255, 255, 255);
  185. font-family: Noto Sans SC;
  186. font-size: 18px;
  187. font-weight: 700;
  188. }
  189. >span {
  190. color: rgb(255, 255, 255);
  191. font-family: Noto Sans SC;
  192. font-size: 13px;
  193. font-weight: 500;
  194. }
  195. }
  196. >.aircraft {
  197. width: 1.75rem;
  198. height: 1.75rem;
  199. background: url('../../static/hang.png') no-repeat;
  200. background-size: 100% 100%;
  201. }
  202. }
  203. }
  204. >.content_bootom {
  205. width: 100%;
  206. // height: calc(100vh - 20.9375rem - 4.375rem);
  207. padding-bottom: 0;
  208. position: absolute;
  209. bottom: 0;
  210. top: 10.75rem;
  211. // border-radius: 6px 6px 0px 0px;
  212. overflow: hidden;
  213. background: rgb(255, 255, 255);
  214. padding: 0 10px;
  215. box-sizing: border-box;
  216. .up {
  217. width: 100%;
  218. display: flex;
  219. align-items: center;
  220. justify-content: space-between;
  221. padding: 0 5px;
  222. border-bottom: 1px solid rgb(238, 238, 238);
  223. box-sizing: border-box;
  224. // transform: all 3s;
  225. >.down_up {
  226. width: .875rem;
  227. height: .875rem;
  228. background: url('../../static/xia.png') no-repeat;
  229. background-size: 100% 100%;
  230. }
  231. >.error {
  232. width: 60px;
  233. color: red
  234. }
  235. >.normal {
  236. width: 160px;
  237. color: #4682b4
  238. }
  239. >.list {
  240. position: relative;
  241. height: 3rem;
  242. display: flex;
  243. align-items: center;
  244. transform: all 3s;
  245. right: 0;
  246. color: rgb(0, 0, 0);
  247. font-family: Noto Sans SC;
  248. font-size: 16px;
  249. font-weight: 500;
  250. }
  251. >.delete {
  252. width: 3.75rem;
  253. height: 3.75rem;
  254. background: rgb(237, 101, 101);
  255. display: flex;
  256. align-items: center;
  257. justify-content: center;
  258. position: relative;
  259. right: -3.75rem;
  260. transform: all 3s;
  261. >.log {
  262. width: .875rem;
  263. height: .875rem;
  264. background: url('../../static/vector@1x.png') no-repeat;
  265. background-size: 100% 100%;
  266. }
  267. }
  268. }
  269. .scroll-Y {
  270. // height: calc(100% - 2.5rem - 2.75rem - 2.25rem - 2.25rem);
  271. height: calc(100% - 2rem);
  272. margin-top: 10px;
  273. }
  274. .but {
  275. width: 20.5625rem;
  276. height: 2.5rem;
  277. 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%);
  278. border-radius: .25rem;
  279. color: rgb(255, 255, 255);
  280. font-family: Noto Sans SC;
  281. font-size: 1rem;
  282. margin: 0 auto;
  283. display: flex;
  284. align-items: center;
  285. justify-content: center;
  286. margin-top: 0.25rem;
  287. margin-bottom: 2.25rem;
  288. }
  289. }
  290. }
  291. }
  292. </style>