index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559
  1. <template>
  2. <view class="app-content">
  3. <!-- <img src="../../static/beijing.png" alt="" class="tuku"> -->
  4. <Navs :navname.sync="navname" @fall="fall"></Navs>
  5. <view class="content">
  6. <view class="content_top">
  7. <view class="craid">
  8. <view class="craid_data">
  9. <p>HU7412</p>
  10. <span>2023-02-17</span>
  11. </view>
  12. <view class="craid_data">
  13. <p>CTU</p>
  14. <span>12:00:00</span>
  15. </view>
  16. <view class="aircraft"></view>
  17. <view class="craid_data">
  18. <p>CSX</p>
  19. <span>14:23:00</span>
  20. </view>
  21. </view>
  22. <view class="scanning">
  23. <view :class="getFooterClass">
  24. <input class="input" v-model.trim="stratvalue" disabled="true" @tap="locationEntry" type="text"
  25. value=""
  26. placeholder-style="font-size:.8125rem;color:rgb(189, 214, 231);display:flex;justify-content: start;"
  27. placeholder="请输入操作位置" />
  28. <view class="log_l"></view>
  29. <view class="log"></view>
  30. </view>
  31. <view :class="getFooterClasser" v-if="navname == '装车'">
  32. <input class="input" v-model.trim="stratvalue1" disabled="true" @tap="locationEntry" type="text"
  33. value=""
  34. placeholder-style="font-size:.8125rem;color:rgb(189, 214, 231);display:flex;justify-content: start;"
  35. placeholder="请输入容器编号" />
  36. <view class="log_l"></view>
  37. <view class="log"></view>
  38. </view>
  39. <view :class="getlooterClass">
  40. <input class="input" v-model.trim="endvalue" disabled="true" @tap="baggageEntry" type="text"
  41. value=""
  42. placeholder-style="font-size:.8125rem;color:rgb(189, 214, 231);display:flex;justify-content: start;"
  43. placeholder="请输入行李号" />
  44. <view class="log_l"></view>
  45. <view class="log"></view>
  46. </view>
  47. </view>
  48. </view>
  49. <view class="content_bootom" :style="{top:dataheight}">
  50. <view class="choice" @touchmove="movetran">
  51. <view :class="action === true ?'handle':'handles'" @tap="clicker">已处理</view>
  52. <view :class="action !== true ?'handle':'handles'" @tap="clicker">未处理</view>
  53. </view>
  54. <scroll-view scroll-y="true" class="scroll-Y">
  55. <view :class="item.types ? 'ups':'up'" v-for="(item, index) in listdate" :key="index"
  56. @touchstart="start" @touchend="(e)=>end(e,item)">
  57. <view class="list" @tap="toDetail">行李编号:{{ item.name }}</view>
  58. <view class="down_up" @tap="up"></view>
  59. <view class="delete">
  60. <view class="log" @click="()=>up(item)"></view>
  61. </view>
  62. </view>
  63. </scroll-view>
  64. <view class="but" v-if="!action" @tap="clickOrder">一键处理</view>
  65. </view>
  66. </view>
  67. <!-- 提示信息和下拉弹窗 -->
  68. <mask-model :headername="headername" :typeShow="typeShow" :tabname="tabname" ref="showMask" btnType="1"
  69. @confirm="confirm" @cancel="cancel" titleColoe="#666666" cancelColor="#666666" confirmColor="#007AFF"
  70. :maskTitle="maskTitle"></mask-model>
  71. </view>
  72. </template>
  73. <script>
  74. import Navs from '../../components/header/navs.vue'
  75. import maskModel from '../../components/mask-model/mask-model.vue'
  76. export default {
  77. data() {
  78. return {
  79. isShow: true,
  80. dataheight: '20.75rem',
  81. scrollTop: 0,
  82. old: {
  83. scrollTop: 0
  84. },
  85. input: '',
  86. main: null,
  87. poll: null,
  88. filter: null,
  89. pusher: null,
  90. intentServer: null,
  91. arr: [],
  92. navname: '分拣',
  93. startcode: '扫码',
  94. stopcode: '扫码',
  95. action: true,
  96. listdate: [{
  97. name: '3880491101',
  98. types: false
  99. },
  100. {
  101. name: '3880491101',
  102. types: false
  103. },
  104. {
  105. name: '3880491101',
  106. types: false
  107. },
  108. {
  109. name: '3880491101',
  110. types: false
  111. },
  112. {
  113. name: '3880491101',
  114. types: false
  115. },
  116. {
  117. name: '3880491101',
  118. types: false
  119. },
  120. {
  121. name: '3880491101',
  122. types: false
  123. },
  124. {
  125. name: '3880491101',
  126. types: false
  127. },
  128. {
  129. name: '3880491101',
  130. types: false
  131. },
  132. {
  133. name: '3880491101',
  134. types: false
  135. },
  136. {
  137. name: '3880491101',
  138. types: false
  139. },
  140. {
  141. name: '3880491101',
  142. types: false
  143. },
  144. {
  145. name: '3880491101',
  146. types: false
  147. }
  148. ],
  149. arr: [], //触发判断
  150. startData: {
  151. clientX: 0,
  152. clientY: 0
  153. },
  154. stratvalue: '', //开始位置
  155. stratvalue1:'',
  156. endvalue: '', //结束位置
  157. maskTitle: '该行李不属于当前航班,请选择处理方式。',
  158. tabname: '', //按钮名称
  159. typeShow: true,
  160. headername: '提示信息',
  161. }
  162. },
  163. created(option) {},
  164. onLoad(option) {
  165. this.navname = JSON.parse(decodeURIComponent(option.item))
  166. if (this.navname == '分拣') {
  167. this.tabname = '航班'
  168. }
  169. },
  170. onUnload() {
  171. // this.$refs.showMask.show();
  172. },
  173. onShow() {},
  174. mounted() {
  175. // this.$refs.showMask.show();
  176. // console.log(this.stratvalue.length)
  177. },
  178. computed: {
  179. getFooterClass() {
  180. return this.stratvalue ? 'scanning_cds' : 'scanning_cd'
  181. },
  182. getlooterClass() {
  183. return this.endvalue ? 'scanning_cds' : 'scanning_cd'
  184. },
  185. getFooterClasser() {
  186. return this.stratvalue1 ? 'scanning_cds' : 'scanning_cd'
  187. },
  188. },
  189. components: {
  190. Navs,
  191. maskModel: maskModel,
  192. },
  193. methods: {
  194. //下拉
  195. up() {
  196. this.typeShow = false
  197. this.maskTitle = '是否确定要拉下该件行李?'
  198. this.headername = '下拉提示'
  199. this.$refs.showMask.show();
  200. },
  201. confirm: function(e) { //确定按钮
  202. console.log('您点击了确定按钮');
  203. },
  204. cancel: function() { //取消按钮
  205. console.log('您点击了取消按钮');
  206. },
  207. toDetail(){
  208. uni.redirectTo({
  209. url: "/pages/detail/index"
  210. })
  211. },
  212. clickOrder() {
  213. uni.redirectTo({
  214. url: "/pages/baggagecheck/index"
  215. })
  216. },
  217. baggageEntry() {
  218. uni.redirectTo({
  219. url: "/pages/baggageEntry/index"
  220. })
  221. },
  222. locationEntry() {
  223. uni.redirectTo({
  224. url: "/pages/locationEntry/index"
  225. })
  226. },
  227. fall() {
  228. uni.switchTab({
  229. url: "/pages/index/index"
  230. })
  231. },
  232. clicker() {
  233. this.action = !this.action
  234. },
  235. movetran(e) {
  236. let arr = uni.getSystemInfoSync().windowHeight;
  237. this.dataheight = (e.changedTouches[0].clientY / 16) + 'rem'
  238. if (e.changedTouches[0].clientY / 16 > 20.75) {
  239. this.dataheight = 20.75 + 'rem'
  240. } else if (e.changedTouches[0].clientY / 16 < 7.3125) {
  241. this.dataheight = 6.3125 + 'rem'
  242. }
  243. },
  244. start(e) {
  245. this.startData.clientX = e.changedTouches[0].clientX;
  246. },
  247. end(e, item) {
  248. const subX = e.changedTouches[0].clientX - this.startData.clientX;
  249. if (subX > 50) {
  250. // console.log('右滑')
  251. item.types = false
  252. } else if (subX < -50) {
  253. item.types = true
  254. // console.log('左滑')
  255. }
  256. },
  257. checkMore(item) {
  258. console.log(item)
  259. }
  260. },
  261. }
  262. </script>
  263. <style lang="scss" scoped>
  264. .app-content {
  265. position: relative;
  266. background: rgb(49, 85, 99);
  267. >.content {
  268. width: 100%;
  269. height: calc(100vh - 5.375rem);
  270. position: relative;
  271. // overflow: hidden;
  272. // background: rgb(49, 85, 99);
  273. >.content_top {
  274. width: 100%;
  275. // background: rgb(49, 85, 99);
  276. padding-bottom: 1.3125rem;
  277. >.craid {
  278. // width: 100%;
  279. height: 5.625rem;
  280. padding: 0 2.5625rem 0 2.5625rem;
  281. display: flex;
  282. justify-content: space-between;
  283. flex-wrap: wrap;
  284. align-items: center;
  285. >.craid_data {
  286. display: flex;
  287. flex-direction: column;
  288. justify-content: center;
  289. align-items: start;
  290. >p {
  291. color: rgb(255, 255, 255);
  292. font-family: Noto Sans SC;
  293. font-size: 18px;
  294. font-weight: 700;
  295. }
  296. >span {
  297. color: rgb(255, 255, 255);
  298. font-family: Noto Sans SC;
  299. font-size: 13px;
  300. font-weight: 500;
  301. }
  302. }
  303. >.aircraft {
  304. width: 1.75rem;
  305. height: 1.75rem;
  306. background: url('../../static/hang.png') no-repeat;
  307. background-size: 100% 100%;
  308. }
  309. }
  310. >.scanning {
  311. height: 12rem;
  312. padding: 0 1.5rem 0 1.5rem;
  313. opacity: 1;
  314. transition: all 3s;
  315. .scanning_cd {
  316. width: 100%;
  317. height: 3rem;
  318. opacity: 1;
  319. transition: all 3s;
  320. background: rgb(59, 103, 123);
  321. margin-top: 1rem;
  322. margin-bottom: .5rem;
  323. border-radius: 4px;
  324. display: flex;
  325. justify-content: center;
  326. align-items: center;
  327. color: rgb(255, 255, 255);
  328. font-family: Noto Sans SC;
  329. font-size: 16px;
  330. >.log {
  331. width: .875rem;
  332. height: .875rem;
  333. background: url('../../static/saoma.png') no-repeat;
  334. background-size: 100% 100%;
  335. margin-left: 1rem;
  336. }
  337. >.log_l {
  338. width: .125rem;
  339. height: 1.3125rem;
  340. margin-left: 4rem;
  341. background: rgb(255, 255, 255);
  342. }
  343. }
  344. .scanning_cds {
  345. width: 100%;
  346. height: 3rem;
  347. opacity: 1;
  348. transition: all 3s;
  349. background: rgb(51, 161, 165);
  350. margin-top: 1rem;
  351. margin-bottom: .5rem;
  352. border-radius: 4px;
  353. display: flex;
  354. justify-content: center;
  355. align-items: center;
  356. color: rgb(255, 255, 255);
  357. font-family: Noto Sans SC;
  358. font-size: 16px;
  359. >.log {
  360. width: .875rem;
  361. height: .875rem;
  362. background: url('../../static/saoma.png') no-repeat;
  363. background-size: 100% 100%;
  364. margin-left: 1rem;
  365. }
  366. >.log_l {
  367. width: .125rem;
  368. height: 1.3125rem;
  369. margin-left: 4rem;
  370. background: rgb(255, 255, 255);
  371. }
  372. }
  373. }
  374. }
  375. >.content_bootom {
  376. width: 100%;
  377. // height: calc(100vh - 20.9375rem - 4.375rem);
  378. padding-bottom: 0;
  379. position: absolute;
  380. bottom: 0;
  381. top: 20.75rem;
  382. border-radius: 6px 6px 0px 0px;
  383. overflow: hidden;
  384. background: rgb(255, 255, 255);
  385. >.choice {
  386. width: 100%;
  387. height: 2.5rem;
  388. display: flex;
  389. background: rgb(240, 241, 243);
  390. >.handle {
  391. width: 50%;
  392. display: flex;
  393. align-items: center;
  394. justify-content: center;
  395. color: rgb(0, 0, 0);
  396. font-family: Noto Sans SC;
  397. font-size: 15px;
  398. font-weight: 700;
  399. border-radius: 6px 6px 0px 0px;
  400. background: rgb(255, 255, 255);
  401. }
  402. >.handles {
  403. width: 50%;
  404. display: flex;
  405. align-items: center;
  406. justify-content: center;
  407. color: rgb(0, 0, 0);
  408. font-family: Noto Sans SC;
  409. font-size: 15px;
  410. font-weight: 700;
  411. }
  412. }
  413. .up {
  414. width: 100%;
  415. display: flex;
  416. align-items: center;
  417. margin-left: 1rem;
  418. border-bottom: 1px solid rgb(238, 238, 238);
  419. // transform: all 3s;
  420. >.down_up {
  421. width: .875rem;
  422. height: .875rem;
  423. background: url('../../static/xia.png') no-repeat;
  424. background-size: 100% 100%;
  425. }
  426. >.list {
  427. width: 97%;
  428. position: relative;
  429. height: 3.75rem;
  430. display: flex;
  431. align-items: center;
  432. transform: all 3s;
  433. right: 0;
  434. color: rgb(0, 0, 0);
  435. font-family: Noto Sans SC;
  436. font-size: 13px;
  437. font-weight: 500;
  438. }
  439. >.delete {
  440. width: 3.75rem;
  441. height: 3.75rem;
  442. background: rgb(237, 101, 101);
  443. display: flex;
  444. align-items: center;
  445. justify-content: center;
  446. position: relative;
  447. right: -3.75rem;
  448. transform: all 3s;
  449. >.log {
  450. width: .875rem;
  451. height: .875rem;
  452. background: url('../../static/vector@1x.png') no-repeat;
  453. background-size: 100% 100%;
  454. }
  455. }
  456. }
  457. .ups {
  458. width: 100%;
  459. display: flex;
  460. align-items: center;
  461. margin-left: 1rem;
  462. border-bottom: 1px solid rgb(238, 238, 238);
  463. // transform: all 3s;
  464. >.down_up {
  465. width: .875rem;
  466. height: .875rem;
  467. position: relative;
  468. right: 1.875rem;
  469. background: url('../../static/xia.png') no-repeat;
  470. background-size: 100% 100%;
  471. }
  472. >.list {
  473. width: 97%;
  474. position: relative;
  475. height: 3.75rem;
  476. display: flex;
  477. align-items: center;
  478. right: 3.75rem;
  479. // right: 0;
  480. color: rgb(0, 0, 0);
  481. font-family: Noto Sans SC;
  482. font-size: 13px;
  483. font-weight: 500;
  484. transform: all 3s;
  485. }
  486. >.delete {
  487. width: 3.75rem;
  488. height: 3.75rem;
  489. background: rgb(237, 101, 101);
  490. display: flex;
  491. align-items: center;
  492. justify-content: center;
  493. position: relative;
  494. right: 1rem;
  495. transform: all 3s;
  496. // right: -3.75rem;
  497. >.log {
  498. width: .875rem;
  499. height: .875rem;
  500. background: url('../../static/vector@1x.png') no-repeat;
  501. background-size: 100% 100%;
  502. }
  503. }
  504. }
  505. .scroll-Y {
  506. // height: calc(100% - 2.5rem - 2.75rem - 2.25rem - 2.25rem);
  507. height: calc(100% - 2.5rem - 2.75rem);
  508. }
  509. .but {
  510. width: 20.5625rem;
  511. height: 2.5rem;
  512. 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%);
  513. border-radius: .25rem;
  514. color: rgb(255, 255, 255);
  515. font-family: Noto Sans SC;
  516. font-size: 1rem;
  517. margin: 0 auto;
  518. display: flex;
  519. align-items: center;
  520. justify-content: center;
  521. margin-top: 0.25rem;
  522. margin-bottom: 2.25rem;
  523. }
  524. }
  525. }
  526. }
  527. </style>