index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. <template>
  2. <view class="app-content">
  3. <img src="static/beijing.png" alt="" class="tuku">
  4. <!-- <Nav :navname.sync="navname" :navtype="false" :navtypes="true" :index="index"></Nav> -->
  5. <view class="cont" style="margin-top: 3rem;">
  6. <view class="photograph" @tap="upindiv">
  7. <img src="static/shuai.png" alt="">
  8. </view>
  9. <view class="details">
  10. <p>{{$storage.getJson("users").user_name?$storage.getJson("users").user_name:""}}</p>
  11. <span>工号:{{$storage.getJson("users").user_id?$storage.getJson("users").user_id:""}}</span>
  12. </view>
  13. <view class="detail_list">
  14. <view class="list_child" @tap="recup('SORT')">
  15. <p>分拣</p>
  16. <span>{{SORTCount}}</span>
  17. </view>
  18. <view class="list_child" @tap="recup('LOAD')">
  19. <p>装车</p>
  20. <span>{{LOADCount}}</span>
  21. </view>
  22. <view class="list_child" @tap="recup('INFL')">
  23. <p>装机</p>
  24. <span>{{INFLCount}}</span>
  25. </view>
  26. <view class="list_child" @tap="recup('UNLOAD')">
  27. <p>卸机</p>
  28. <span>{{UNLOADCount}}</span>
  29. </view>
  30. <view class="list_child" @tap="recup('ARRIVED')">
  31. <p>到达</p>
  32. <span>{{ARRIVEDCount}}</span>
  33. </view>
  34. <view class="list_child" @tap="recup('extract')">
  35. <p>提取</p>
  36. <span>{{extractCount}}</span>
  37. </view>
  38. </view>
  39. <view class="detail_type">
  40. <view class="list_child" @tap="recup()">
  41. <view class="log bg1"></view>
  42. <p>我的记录</p>
  43. </view>
  44. <view class="list_child" @tap="uppop">
  45. <view class="log bg2"></view>
  46. <p>扫码开关</p>
  47. </view>
  48. <view class="list_child" @tap="uppops">
  49. <view class="log bg3"></view>
  50. <p>工作方式</p>
  51. </view>
  52. <view class="list_child" @tap="uphelp">
  53. <view class="log bg4"></view>
  54. <p>帮助</p>
  55. </view>
  56. </view>
  57. </view>
  58. <z-popup v-model="all">
  59. <view class="popup_title">
  60. <p>请选择扫码开关</p>
  61. </view>
  62. <view class="popup_content">
  63. <ul>
  64. <li v-for="(item, index) in list" :key="index" @tap="()=>selectup(index)">
  65. <p>{{item.name}}</p>
  66. <view class="start" v-if="action === index ? true: false">
  67. <img src="static/gou.png" alt="">
  68. </view>
  69. </li>
  70. </ul>
  71. <view class="top"></view>
  72. <view class="cancel" @tap="()=>topup()">取消</view>
  73. </view>
  74. </z-popup>
  75. <z-popup v-model="allshow">
  76. <view class="popup_title">
  77. <p>请选择工作方式</p>
  78. </view>
  79. <view class="popup_content">
  80. <ul>
  81. <li v-for="(item, index) in lists" :key="index" @tap="()=>selectup2(index)">
  82. <p>{{item.name}}</p>
  83. <view class="start" v-if="action2 === index ? true: false">
  84. <img src="static/gou.png" alt="">
  85. </view>
  86. </li>
  87. </ul>
  88. <view class="top"></view>
  89. <view class="cancel" @tap="()=>topup()">取消</view>
  90. </view>
  91. </z-popup>
  92. </view>
  93. </template>
  94. <script>
  95. import Nav from '../../components/header/nav.vue'
  96. // import Popup from '../../uni_modules/z-popup/components/z-popup'
  97. export default {
  98. data() {
  99. return {
  100. SORTCount: 0,
  101. LOADCount: 0,
  102. INFLCount: 0,
  103. UNLOADCount: 0,
  104. ARRIVEDCount: 0,
  105. extractCount: 0,
  106. main: null,
  107. poll: null,
  108. filter: null,
  109. pusher: null,
  110. intentServer: null,
  111. navname: '我的',
  112. all: false,
  113. allshow: false,
  114. action: 0,
  115. action2: 0,
  116. index: 0,
  117. list: [{
  118. name: '激光扫描枪'
  119. },
  120. {
  121. name: 'RFID读取器'
  122. }
  123. ],
  124. lists: [{
  125. name: '单次扫描'
  126. },
  127. {
  128. name: '连续扫描'
  129. }
  130. ]
  131. }
  132. },
  133. created(option) {},
  134. onLoad() {},
  135. onUnload() {
  136. uni.$off("scancodemsg");
  137. },
  138. onShow() {
  139. // uni.hideTabBar()//关闭导航栏
  140. // uni.showTabBar()//显示导航栏
  141. this.action = this.$storage.get("device")?Number(this.$storage.get("device")):0
  142. this.$devapi.TYPE_DEV_JQHWGEVIQUWVILBE = this.action
  143. this.action2 = this.$storage.get("times")?Number(this.$storage.get("times")):0
  144. this.$devapi.RFIDIntervalTime = this.action2
  145. uni.$on("scancodemsg", (data) => {
  146. if (data.msg.length > 9) {
  147. uni.navigateTo({
  148. url: "/pages/detail/index?luggageNum=" + data.msg
  149. // url: "/pages/detail/index?luggageNum=3999483183"
  150. })
  151. }
  152. });
  153. if (this.$storage.get('airport')) {
  154. this.index = this.$storage.get('airport')
  155. }
  156. this.SORTCount = 0;
  157. this.LOADCount = 0;
  158. this.INFLCount = 0;
  159. this.UNLOADCount = 0;
  160. this.ARRIVEDCount = 0;
  161. this.extractCount = 0;
  162. if (this.$storage.getJson("users").user_name) {
  163. this.$nextTick(e=>{
  164. this.getDataCount()
  165. })
  166. }
  167. },
  168. onHide() {
  169. uni.$off("scancodemsg");
  170. },
  171. mounted() {},
  172. components: {
  173. Nav
  174. },
  175. watch: {
  176. allshow() {
  177. if (this.allshow) {
  178. uni.hideTabBar({})
  179. } else {
  180. uni.showTabBar()
  181. }
  182. },
  183. all() {
  184. if (this.all) {
  185. uni.hideTabBar({})
  186. } else {
  187. uni.showTabBar()
  188. }
  189. }
  190. },
  191. methods: {
  192. async getDataCount() {
  193. let data = {
  194. "serviceId": 3018,
  195. "dataContent": [{
  196. "agentNumber": this.$storage.getJson("users").user_name
  197. }
  198. ]
  199. }
  200. await this.$http.httpPost('/openApi/query', data).then(res => {
  201. if (res.code == "0") {
  202. res.returnData.map(item => {
  203. if(item.nodeCode == "SORT"){
  204. this.SORTCount = item.total
  205. }
  206. if(item.nodeCode == "LOAD"){
  207. this.LOADCount = item.total
  208. }
  209. if(item.nodeCode == "INFL"){
  210. this.INFLCount = item.total
  211. }
  212. if(item.nodeCode == "UNLOAD"){
  213. this.UNLOADCount = item.total
  214. }
  215. if(item.nodeCode == "ARRIVED"){
  216. this.ARRIVEDCount = item.total
  217. }
  218. if(item.nodeCode == "extract"){
  219. this.extractCount = item.total
  220. }
  221. })
  222. }
  223. else{
  224. uni.showToast({
  225. icon:'none',
  226. title: "查询信息失败",
  227. duration: 5000
  228. });
  229. }
  230. })
  231. },
  232. recup(type) {
  233. if(type){
  234. uni.navigateTo({
  235. url: "/pages/myrecords/index?nodeCode="+type
  236. })
  237. }
  238. else{
  239. uni.navigateTo({
  240. url: "/pages/myrecords/index"
  241. })
  242. }
  243. },
  244. fall() {
  245. uni.redirectTo({
  246. url: "/pages/index/index"
  247. })
  248. },
  249. upindiv() {
  250. uni.navigateTo({
  251. url: "/pages/individual/index"
  252. })
  253. },
  254. uphelp() {
  255. uni.navigateTo({
  256. url: "/pages/help/index"
  257. })
  258. },
  259. uppop() {
  260. uni.hideTabBar({})
  261. this.all = true
  262. },
  263. uppops() {
  264. uni.hideTabBar({})
  265. this.allshow = true
  266. },
  267. selectup(index) {
  268. this.$devapi.TYPE_DEV_JQHWGEVIQUWVILBE = Number(index)
  269. this.$storage.set("device",index)
  270. this.action = index
  271. if(Number(index) == 0){
  272. uni.showToast({
  273. icon:'none',
  274. title: "切换激光扫描枪",
  275. duration: 3000
  276. });
  277. this.$storage.set("times",0)
  278. this.action2 = 0
  279. this.$devapi.RFIDIntervalTime = 0
  280. }
  281. else{
  282. uni.showToast({
  283. icon:'none',
  284. title: "切换RFID读取器",
  285. duration: 3000
  286. });
  287. }
  288. },
  289. selectup2(index) {
  290. if(Number(this.$storage.get("device")) == 0 && Number(index)==1){
  291. uni.showToast({
  292. icon:'none',
  293. title: "激光扫描枪不支持多扫",
  294. duration: 3000
  295. });
  296. }
  297. else{
  298. if(Number(index)==1){
  299. uni.showToast({
  300. icon:'none',
  301. title: "切换为多扫",
  302. duration: 3000
  303. });
  304. }
  305. else{
  306. uni.showToast({
  307. icon:'none',
  308. title: "切换为单扫",
  309. duration: 3000
  310. });
  311. }
  312. this.$storage.set("times",index)
  313. this.action2 = index
  314. this.$devapi.RFIDIntervalTime = this.action2
  315. }
  316. },
  317. topup() {
  318. this.all = false
  319. this.allshow = false
  320. uni.showTabBar() //显示导航栏
  321. }
  322. },
  323. }
  324. </script>
  325. <style lang="scss" scoped>
  326. .app-content {
  327. // position: relative;
  328. >.tuku {
  329. position: absolute;
  330. z-index: -1;
  331. width: 100%;
  332. top: 0;
  333. }
  334. >.cont {
  335. z-index: 999;
  336. >.photograph {
  337. width: 6rem;
  338. height: 6rem;
  339. // background: red;
  340. border-radius: 50%;
  341. margin: 0 auto;
  342. margin-top: .625rem;
  343. }
  344. >.details {
  345. width: 100%;
  346. height: 3.125rem;
  347. display: flex;
  348. flex-direction: column;
  349. align-items: center;
  350. justify-content: center;
  351. // background: red;
  352. margin-top: .625rem;
  353. >p {
  354. color: rgb(255, 255, 255);
  355. font-family: Noto Sans SC;
  356. font-size: 1rem;
  357. font-weight: 500;
  358. }
  359. >span {
  360. color: rgb(255, 255, 255);
  361. font-family: Noto Sans SC;
  362. font-size: .8125rem;
  363. font-weight: 500;
  364. }
  365. }
  366. >.detail_list {
  367. width: 100%;
  368. // background: red;
  369. display: flex;
  370. flex-wrap: wrap;
  371. margin-top: 1rem;
  372. >.list_child {
  373. width: 33%;
  374. display: flex;
  375. flex-direction: column;
  376. justify-items: center;
  377. align-items: center;
  378. margin-bottom: 1rem;
  379. >p {
  380. color: rgb(255, 255, 255);
  381. font-family: Noto Sans SC;
  382. font-size: .8125rem;
  383. font-weight: 500;
  384. }
  385. >span {
  386. color: rgb(255, 255, 255);
  387. font-family: Helvetica;
  388. font-size: 1rem;
  389. font-weight: 700;
  390. }
  391. }
  392. }
  393. >.detail_type {
  394. height: calc(100vh - 35.875rem);
  395. padding: 0 3.125rem 0 3.125rem;
  396. display: flex;
  397. justify-content: space-around;
  398. flex-wrap: wrap;
  399. flex: 1;
  400. >.list_child {
  401. width: 7.5rem;
  402. height: 7.5rem;
  403. background: linear-gradient(188.06deg, rgba(65.49, 109.04, 128.64, 1.00) 3.551%, rgba(38, 68.32, 81.96, 1.00) 110.878%);
  404. box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  405. border-radius: 4px;
  406. margin-bottom: 4%;
  407. display: flex;
  408. flex-direction: column;
  409. justify-content: center;
  410. align-items: center;
  411. >.log {
  412. width: 2.25rem;
  413. height: 2.25rem;
  414. // background: rgb(196, 196, 196);
  415. margin-bottom: .5rem;
  416. }
  417. .bg1 {
  418. background: url('../../static/jilu.png') no-repeat;
  419. background-size: 100% 100%;
  420. }
  421. .bg2 {
  422. background: url('../../static/kaiguan.png') no-repeat;
  423. background-size: 100% 100%;
  424. }
  425. .bg3 {
  426. background: url('../../static/gongzuo.png') no-repeat;
  427. background-size: 100% 100%;
  428. }
  429. .bg4 {
  430. background: url('../../static/bagzu.png') no-repeat;
  431. background-size: 100% 100%;
  432. }
  433. >p {
  434. color: rgb(255, 255, 255);
  435. font-family: Noto Sans SC;
  436. font-size: .9375rem;
  437. font-weight: 500;
  438. }
  439. }
  440. }
  441. }
  442. .popup_title {
  443. width: 100%;
  444. height: 4.5rem;
  445. background: rgb(255, 255, 255);
  446. border-radius: 10px 10px 0px 0px;
  447. display: flex;
  448. align-items: center;
  449. color: rgb(16, 17, 22);
  450. font-family: Noto Sans SC;
  451. font-size: 1rem;
  452. font-weight: 700;
  453. >p {
  454. margin-left: 1.5rem;
  455. color: rgb(16, 17, 22);
  456. font-family: Noto Sans SC;
  457. font-size: 1rem;
  458. font-weight: 700;
  459. }
  460. }
  461. .popup_content {
  462. width: 100%;
  463. background: rgb(255, 255, 255);
  464. >ul {
  465. width: 100%;
  466. >li {
  467. width: 82%;
  468. height: 2.6875rem;
  469. display: flex;
  470. align-items: center;
  471. justify-content: space-between;
  472. >p {
  473. color: rgb(0, 0, 0);
  474. font-family: Noto Sans SC;
  475. font-size: .8125rem;
  476. font-weight: 400;
  477. }
  478. >.start {
  479. width: 1rem;
  480. height: 1rem;
  481. background: rgb(37, 121, 160);
  482. display: flex;
  483. align-items: center;
  484. justify-content: center;
  485. border-radius: 50%;
  486. }
  487. }
  488. }
  489. >.top {
  490. width: 100%;
  491. height: .875rem;
  492. background: rgb(249, 249, 249);
  493. }
  494. >.cancel {
  495. width: 100%;
  496. height: 3.3125rem;
  497. display: flex;
  498. align-items: center;
  499. justify-content: center;
  500. color: rgb(0, 0, 0);
  501. font-family: Noto Sans SC;
  502. font-size: .9375rem;
  503. font-weight: 500;
  504. }
  505. }
  506. }
  507. </style>