index.vue 12 KB

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