index.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  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(){
  136. },
  137. onUnload() {
  138. },
  139. onShow() {
  140. },
  141. mounted() {
  142. },
  143. components: {
  144. Nav
  145. },
  146. methods: {
  147. clickOrder () {
  148. uni.redirectTo({
  149. url: "/pages/baggagecheck/index"
  150. })
  151. },
  152. fall () {
  153. uni.switchTab({
  154. url: "/pages/index/index"
  155. })
  156. },
  157. clicker () {
  158. this.action = !this.action
  159. },
  160. movetran (e) {
  161. let arr = uni.getSystemInfoSync().windowHeight;
  162. this.dataheight = (e.changedTouches[0].clientY/16) + 'rem'
  163. if (e.changedTouches[0].clientY/16 > 20.75) {
  164. this.dataheight = 20.75 + 'rem'
  165. } else if (e.changedTouches[0].clientY/16 < 7.3125) {
  166. this.dataheight = 7.3125 + 'rem'
  167. }
  168. },
  169. start(e) {
  170. this.startData.clientX = e.changedTouches[0].clientX;
  171. },
  172. end (e,item) {
  173. const subX = e.changedTouches[0].clientX - this.startData.clientX;
  174. if (subX > 50) {
  175. // console.log('右滑')
  176. item.types = false
  177. } else if (subX < -50) {
  178. item.types = true
  179. // console.log('左滑')
  180. }
  181. },
  182. checkMore (item) {
  183. console.log(item)
  184. }
  185. },
  186. }
  187. </script>
  188. <style lang="scss" scoped>
  189. .app-content{
  190. position: relative;
  191. background: rgb(49, 85, 99);
  192. >.content{
  193. width: 100%;
  194. height: calc(100vh - 4.375rem);
  195. position: relative;
  196. // overflow: hidden;
  197. // background: rgb(49, 85, 99);
  198. >.content_top{
  199. width: 100%;
  200. // background: rgb(49, 85, 99);
  201. padding-bottom: 1.3125rem;
  202. >.craid{
  203. width: 100%;
  204. height: 40%;
  205. display: flex;
  206. justify-content: space-around;
  207. flex-wrap: wrap;
  208. >.name{
  209. width: 50%;
  210. display: flex;
  211. align-items: flex-start;
  212. flex-direction: column;
  213. justify-content: center;
  214. >p{
  215. margin-left: 3.125rem;
  216. color: rgb(255, 255, 255);
  217. font-family: Noto Sans SC;
  218. font-size: .875rem;
  219. margin-bottom: 10px;
  220. }
  221. >span{
  222. margin-left: 3.125rem;
  223. color: rgb(255, 255, 255);
  224. font-family: Noto Sans SC;
  225. font-size: 1.125rem;
  226. }
  227. }
  228. }
  229. >.scanning{
  230. height: 12rem;
  231. padding: 0 1.5rem 0 1.5rem;
  232. opacity: 1;
  233. transition: all 3s;
  234. >.scanning_cd{
  235. width: 100%;
  236. height: 5.5rem;
  237. opacity: 1;
  238. transition: all 3s;
  239. background: rgb(37, 121, 160);
  240. margin-top: 1rem;
  241. margin-bottom: .5rem;
  242. border-radius: 4px;
  243. display: flex;
  244. justify-content: center;
  245. align-items: center;
  246. color: rgb(255, 255, 255);
  247. font-family: Noto Sans SC;
  248. font-size: 16px;
  249. >.log{
  250. width: .875rem;
  251. height: .875rem;
  252. background: url('../../static/saoma.png') no-repeat;
  253. background-size: 100% 100%;
  254. margin-right: .75rem;
  255. }
  256. }
  257. }
  258. }
  259. >.content_bootom{
  260. width: 100%;
  261. // height: calc(100vh - 20.9375rem - 4.375rem);
  262. padding-bottom: 0;
  263. position: absolute;
  264. bottom: 0;
  265. top: 20.75rem;
  266. border-radius: 6px 6px 0px 0px;
  267. overflow: hidden;
  268. background: rgb(255, 255, 255);
  269. >.choice{
  270. width: 100%;
  271. height: 2.5rem;
  272. display: flex;
  273. background: rgb(240, 241, 243);
  274. >.handle{
  275. width: 50%;
  276. display: flex;
  277. align-items: center;
  278. justify-content: center;
  279. color: rgb(0, 0, 0);
  280. font-family: Noto Sans SC;
  281. font-size: 15px;
  282. font-weight: 700;
  283. border-radius: 6px 6px 0px 0px;
  284. background: rgb(255, 255, 255);
  285. }
  286. >.handles{
  287. width: 50%;
  288. display: flex;
  289. align-items: center;
  290. justify-content: center;
  291. color: rgb(0, 0, 0);
  292. font-family: Noto Sans SC;
  293. font-size: 15px;
  294. font-weight: 700;
  295. }
  296. }
  297. .up{
  298. width: 100%;
  299. display: flex;
  300. margin-left: 1rem;
  301. border-bottom: 1px solid rgb(238, 238, 238);
  302. // transform: all 3s;
  303. >.list{
  304. width: 100%;
  305. position: relative;
  306. height: 3.75rem;
  307. display: flex;
  308. align-items: center;
  309. transform: all 3s;
  310. right: 0;
  311. color: rgb(0, 0, 0);
  312. font-family: Noto Sans SC;
  313. font-size: 13px;
  314. font-weight: 500;
  315. }
  316. >.delete{
  317. width: 3.75rem;
  318. height: 3.75rem;
  319. background: rgb(237, 101, 101);
  320. display: flex;
  321. align-items: center;
  322. justify-content: center;
  323. position: relative;
  324. right: -3.75rem;
  325. transform: all 3s;
  326. >.log{
  327. width: .875rem;
  328. height: .875rem;
  329. background: url('../../static/vector@1x.png') no-repeat;
  330. background-size: 100% 100%;
  331. }
  332. }
  333. }
  334. .ups{
  335. width: 100%;
  336. display: flex;
  337. margin-left: 1rem;
  338. border-bottom: 1px solid rgb(238, 238, 238);
  339. // transform: all 3s;
  340. >.list{
  341. width: 100%;
  342. position: relative;
  343. height: 3.75rem;
  344. display: flex;
  345. align-items: center;
  346. right: 3.75rem;
  347. // right: 0;
  348. color: rgb(0, 0, 0);
  349. font-family: Noto Sans SC;
  350. font-size: 13px;
  351. font-weight: 500;
  352. transform: all 3s;
  353. }
  354. >.delete{
  355. width: 3.75rem;
  356. height: 3.75rem;
  357. background: rgb(237, 101, 101);
  358. display: flex;
  359. align-items: center;
  360. justify-content: center;
  361. position: relative;
  362. right: 1rem;
  363. transform: all 3s;
  364. // right: -3.75rem;
  365. >.log{
  366. width: .875rem;
  367. height: .875rem;
  368. background: url('../../static/vector@1x.png') no-repeat;
  369. background-size: 100% 100%;
  370. }
  371. }
  372. }
  373. .scroll-Y {
  374. height: calc(100% - 2.5rem - 2.75rem - 2.25rem - 2.25rem);
  375. }
  376. .but{
  377. width: 20.5625rem;
  378. height: 2.75rem;
  379. background: linear-gradient(177.56deg, rgba(54.04,157.79,205.96,1) -33.78%,rgba(59.83,102.58,194.93,1) 173%);
  380. border-radius: .25rem;
  381. color: rgb(255, 255, 255);
  382. font-family: Noto Sans SC;
  383. font-size: 1rem;
  384. margin: 0 auto;
  385. display: flex;
  386. align-items: center;
  387. justify-content: center;
  388. margin-top: 2.25rem;
  389. margin-bottom: 2.25rem;
  390. }
  391. }
  392. }
  393. }
  394. </style>