index.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. <template>
  2. <view class="app-content">
  3. <!-- <img src="../../static/beijing.png" alt="" class="tuku"> -->
  4. <Nav :navname.sync="navname" @fall="fall"></Nav>
  5. <view class="content">
  6. <view class="content_top">
  7. <view class="craid">
  8. <view class="name">
  9. <p>航班号</p>
  10. <span>HU7412</span>
  11. </view>
  12. <view class="name">
  13. <p>目的站</p>
  14. <span>CSX</span>
  15. </view>
  16. <view class="name">
  17. <p>航班日期</p>
  18. <span>2023-2-17</span>
  19. </view>
  20. <view class="name">
  21. <p>预计起飞时间</p>
  22. <span>12:00:00</span>
  23. </view>
  24. </view>
  25. <view class="scanning">
  26. <view class="scanning_cd">
  27. <view class="log"></view>
  28. <view class="name">初始位置{{startcode}}</view>
  29. </view>
  30. <view class="scanning_cd">
  31. <view class="log"></view>
  32. <view class="name">结束位置{{stopcode}}</view>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="content_bootom" :style="{top:dataheight}">
  37. <view class="choice" @touchmove="movetran">
  38. <view :class="action === true ?'handle':'handles'" @tap="clicker">已处理</view>
  39. <view :class="action !== true ?'handle':'handles'" @tap="clicker">未处理</view>
  40. </view>
  41. <scroll-view scroll-y="true" class="scroll-Y">
  42. <view :class="item.types ? 'ups':'up'" v-for="(item, index) in listdate" :key="index" @touchstart="start" @touchend="(e)=>end(e,item)">
  43. <view class="list">行李编号:{{ item.name }}</view>
  44. <view class="delete"><view class="log" @click="()=>checkMore(item)"></view></view>
  45. </view>
  46. </scroll-view>
  47. <view class="but" @tap="clickOrder">手动登记</view>
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. import Nav from '../../components/header/nav.vue'
  54. export default {
  55. data() {
  56. return {
  57. isShow: true,
  58. dataheight: '20.75rem',
  59. scrollTop: 0,
  60. old: {
  61. scrollTop: 0
  62. },
  63. input: '',
  64. main: null,
  65. poll: null,
  66. filter:null,
  67. pusher:null,
  68. intentServer:null,
  69. arr: [],
  70. navname: '分拣',
  71. startcode: '扫码',
  72. stopcode: '扫码',
  73. action: true,
  74. listdate: [{
  75. name: '3880491101',
  76. types: false
  77. },
  78. {
  79. name: '3880491101',
  80. types: false
  81. },
  82. {
  83. name: '3880491101',
  84. types: false
  85. },
  86. {
  87. name: '3880491101',
  88. types: false
  89. },
  90. {
  91. name: '3880491101',
  92. types: false
  93. },
  94. {
  95. name: '3880491101',
  96. types: false
  97. },
  98. {
  99. name: '3880491101',
  100. types: false
  101. },
  102. {
  103. name: '3880491101',
  104. types: false
  105. },
  106. {
  107. name: '3880491101',
  108. types: false
  109. },
  110. {
  111. name: '3880491101',
  112. types: false
  113. },
  114. {
  115. name: '3880491101',
  116. types: false
  117. },
  118. {
  119. name: '3880491101',
  120. types: false
  121. },
  122. {
  123. name: '3880491101',
  124. types: false
  125. }],
  126. arr: [],//触发判断
  127. startData: {
  128. clientX: 0,
  129. clientY: 0
  130. },
  131. }
  132. },
  133. created(option) {
  134. },
  135. onLoad(option){
  136. this.navname = JSON.parse(decodeURIComponent(option.item))
  137. },
  138. onUnload() {
  139. },
  140. onShow() {
  141. },
  142. mounted() {
  143. },
  144. components: {
  145. Nav
  146. },
  147. methods: {
  148. clickOrder () {
  149. uni.redirectTo({
  150. url: "/pages/baggagecheck/index"
  151. })
  152. },
  153. fall () {
  154. uni.switchTab({
  155. url: "/pages/index/index"
  156. })
  157. },
  158. clicker () {
  159. this.action = !this.action
  160. },
  161. movetran (e) {
  162. let arr = uni.getSystemInfoSync().windowHeight;
  163. this.dataheight = (e.changedTouches[0].clientY/16) + 'rem'
  164. if (e.changedTouches[0].clientY/16 > 20.75) {
  165. this.dataheight = 20.75 + 'rem'
  166. } else if (e.changedTouches[0].clientY/16 < 7.3125) {
  167. this.dataheight = 7.3125 + 'rem'
  168. }
  169. },
  170. start(e) {
  171. this.startData.clientX = e.changedTouches[0].clientX;
  172. },
  173. end (e,item) {
  174. const subX = e.changedTouches[0].clientX - this.startData.clientX;
  175. if (subX > 50) {
  176. // console.log('右滑')
  177. item.types = false
  178. } else if (subX < -50) {
  179. item.types = true
  180. // console.log('左滑')
  181. }
  182. },
  183. checkMore (item) {
  184. console.log(item)
  185. }
  186. },
  187. }
  188. </script>
  189. <style lang="scss" scoped>
  190. .app-content{
  191. position: relative;
  192. background: rgb(49, 85, 99);
  193. >.content{
  194. width: 100%;
  195. height: calc(100vh - 5.375rem);
  196. position: relative;
  197. // overflow: hidden;
  198. // background: rgb(49, 85, 99);
  199. >.content_top{
  200. width: 100%;
  201. // background: rgb(49, 85, 99);
  202. padding-bottom: 1.3125rem;
  203. >.craid{
  204. width: 100%;
  205. height: 40%;
  206. display: flex;
  207. justify-content: space-around;
  208. flex-wrap: wrap;
  209. >.name{
  210. width: 50%;
  211. display: flex;
  212. align-items: flex-start;
  213. flex-direction: column;
  214. justify-content: center;
  215. >p{
  216. margin-left: 3.125rem;
  217. color: rgb(255, 255, 255);
  218. font-family: Noto Sans SC;
  219. font-size: .875rem;
  220. margin-bottom: 10px;
  221. }
  222. >span{
  223. margin-left: 3.125rem;
  224. color: rgb(255, 255, 255);
  225. font-family: Noto Sans SC;
  226. font-size: 1.125rem;
  227. }
  228. }
  229. }
  230. >.scanning{
  231. height: 12rem;
  232. padding: 0 1.5rem 0 1.5rem;
  233. opacity: 1;
  234. transition: all 3s;
  235. >.scanning_cd{
  236. width: 100%;
  237. height: 5.5rem;
  238. opacity: 1;
  239. transition: all 3s;
  240. background: rgb(37, 121, 160);
  241. margin-top: 1rem;
  242. margin-bottom: .5rem;
  243. border-radius: 4px;
  244. display: flex;
  245. justify-content: center;
  246. align-items: center;
  247. color: rgb(255, 255, 255);
  248. font-family: Noto Sans SC;
  249. font-size: 16px;
  250. >.log{
  251. width: .875rem;
  252. height: .875rem;
  253. background: url('../../static/saoma.png') no-repeat;
  254. background-size: 100% 100%;
  255. margin-right: .75rem;
  256. }
  257. }
  258. }
  259. }
  260. >.content_bootom{
  261. width: 100%;
  262. // height: calc(100vh - 20.9375rem - 4.375rem);
  263. padding-bottom: 0;
  264. position: absolute;
  265. bottom: 0;
  266. top: 20.75rem;
  267. border-radius: 6px 6px 0px 0px;
  268. overflow: hidden;
  269. background: rgb(255, 255, 255);
  270. >.choice{
  271. width: 100%;
  272. height: 2.5rem;
  273. display: flex;
  274. background: rgb(240, 241, 243);
  275. >.handle{
  276. width: 50%;
  277. display: flex;
  278. align-items: center;
  279. justify-content: center;
  280. color: rgb(0, 0, 0);
  281. font-family: Noto Sans SC;
  282. font-size: 15px;
  283. font-weight: 700;
  284. border-radius: 6px 6px 0px 0px;
  285. background: rgb(255, 255, 255);
  286. }
  287. >.handles{
  288. width: 50%;
  289. display: flex;
  290. align-items: center;
  291. justify-content: center;
  292. color: rgb(0, 0, 0);
  293. font-family: Noto Sans SC;
  294. font-size: 15px;
  295. font-weight: 700;
  296. }
  297. }
  298. .up{
  299. width: 100%;
  300. display: flex;
  301. margin-left: 1rem;
  302. border-bottom: 1px solid rgb(238, 238, 238);
  303. // transform: all 3s;
  304. >.list{
  305. width: 100%;
  306. position: relative;
  307. height: 3.75rem;
  308. display: flex;
  309. align-items: center;
  310. transform: all 3s;
  311. right: 0;
  312. color: rgb(0, 0, 0);
  313. font-family: Noto Sans SC;
  314. font-size: 13px;
  315. font-weight: 500;
  316. }
  317. >.delete{
  318. width: 3.75rem;
  319. height: 3.75rem;
  320. background: rgb(237, 101, 101);
  321. display: flex;
  322. align-items: center;
  323. justify-content: center;
  324. position: relative;
  325. right: -3.75rem;
  326. transform: all 3s;
  327. >.log{
  328. width: .875rem;
  329. height: .875rem;
  330. background: url('../../static/vector@1x.png') no-repeat;
  331. background-size: 100% 100%;
  332. }
  333. }
  334. }
  335. .ups{
  336. width: 100%;
  337. display: flex;
  338. margin-left: 1rem;
  339. border-bottom: 1px solid rgb(238, 238, 238);
  340. // transform: all 3s;
  341. >.list{
  342. width: 100%;
  343. position: relative;
  344. height: 3.75rem;
  345. display: flex;
  346. align-items: center;
  347. right: 3.75rem;
  348. // right: 0;
  349. color: rgb(0, 0, 0);
  350. font-family: Noto Sans SC;
  351. font-size: 13px;
  352. font-weight: 500;
  353. transform: all 3s;
  354. }
  355. >.delete{
  356. width: 3.75rem;
  357. height: 3.75rem;
  358. background: rgb(237, 101, 101);
  359. display: flex;
  360. align-items: center;
  361. justify-content: center;
  362. position: relative;
  363. right: 1rem;
  364. transform: all 3s;
  365. // right: -3.75rem;
  366. >.log{
  367. width: .875rem;
  368. height: .875rem;
  369. background: url('../../static/vector@1x.png') no-repeat;
  370. background-size: 100% 100%;
  371. }
  372. }
  373. }
  374. .scroll-Y {
  375. height: calc(100% - 2.5rem - 2.75rem - 2.25rem - 2.25rem);
  376. }
  377. .but{
  378. width: 20.5625rem;
  379. height: 2.75rem;
  380. background: linear-gradient(177.56deg, rgba(54.04,157.79,205.96,1) -33.78%,rgba(59.83,102.58,194.93,1) 173%);
  381. border-radius: .25rem;
  382. color: rgb(255, 255, 255);
  383. font-family: Noto Sans SC;
  384. font-size: 1rem;
  385. margin: 0 auto;
  386. display: flex;
  387. align-items: center;
  388. justify-content: center;
  389. margin-top: 2.25rem;
  390. margin-bottom: 2.25rem;
  391. }
  392. }
  393. }
  394. }
  395. </style>