index.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  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>Admin</p>
  11. <span>工号:E002</span>
  12. </view>
  13. <view class="detail_list">
  14. <view class="list_child">
  15. <p>分拣</p>
  16. <span>200</span>
  17. </view>
  18. <view class="list_child">
  19. <p>装车</p>
  20. <span>200</span>
  21. </view>
  22. <view class="list_child">
  23. <p>上机</p>
  24. <span>200</span>
  25. </view>
  26. <view class="list_child">
  27. <p>卸机</p>
  28. <span>200</span>
  29. </view>
  30. <view class="list_child">
  31. <p>卸车</p>
  32. <span>200</span>
  33. </view>
  34. </view>
  35. <view class="detail_type">
  36. <view class="list_child" @tap="recup">
  37. <view class="log bg1"></view>
  38. <p>我的记录</p>
  39. </view>
  40. <view class="list_child" @tap="uppop">
  41. <view class="log bg2"></view>
  42. <p>扫码开关</p>
  43. </view>
  44. <view class="list_child" @tap="uppops">
  45. <view class="log bg3"></view>
  46. <p>工作方式</p>
  47. </view>
  48. <view class="list_child" @tap="uphelp">
  49. <view class="log bg4"></view>
  50. <p>帮助</p>
  51. </view>
  52. </view>
  53. </view>
  54. <z-popup v-model="all">
  55. <view class="popup_title">
  56. <p>请选择扫码开关</p>
  57. </view>
  58. <view class="popup_content">
  59. <ul>
  60. <li v-for="(item, index) in list" :key="index" @tap="()=>selectup(index)">
  61. <p>{{item.name}}</p>
  62. <view class="start" v-if="action === index ? true: false">
  63. <img src="static/gou.png" alt="">
  64. </view>
  65. </li>
  66. </ul>
  67. <view class="top"></view>
  68. <view class="cancel" @tap="()=>topup()">取消</view>
  69. </view>
  70. </z-popup>
  71. <z-popup v-model="allshow">
  72. <view class="popup_title">
  73. <p>请选择工作方式</p>
  74. </view>
  75. <view class="popup_content">
  76. <ul>
  77. <li v-for="(item, index) in lists" :key="index" @tap="()=>selectup(index)">
  78. <p>{{item.name}}</p>
  79. <view class="start" v-if="action === index ? true: false">
  80. <img src="static/gou.png" alt="">
  81. </view>
  82. </li>
  83. </ul>
  84. <view class="top"></view>
  85. <view class="cancel" @tap="()=>topup()">取消</view>
  86. </view>
  87. </z-popup>
  88. </view>
  89. </template>
  90. <script>
  91. import Nav from '../../components/header/nav.vue'
  92. // import Popup from '../../uni_modules/z-popup/components/z-popup'
  93. export default {
  94. data() {
  95. return {
  96. main: null,
  97. poll: null,
  98. filter:null,
  99. pusher:null,
  100. intentServer:null,
  101. navname: '我的',
  102. all: false,
  103. allshow: false,
  104. action: '',
  105. index:0,
  106. list: [{
  107. name: '相机'
  108. },
  109. {
  110. name: '激光扫描枪'
  111. },
  112. {
  113. name: 'RFID读取器'
  114. }],
  115. lists: [
  116. {
  117. name: '单次扫描'
  118. },
  119. {
  120. name: '连续扫描'
  121. }
  122. ]
  123. }
  124. },
  125. created(option) {
  126. },
  127. onLoad(){
  128. },
  129. onUnload() {
  130. },
  131. onShow() {
  132. // uni.hideTabBar()//关闭导航栏
  133. // uni.showTabBar()//显示导航栏
  134. uni.$on("scancodemsg", (data) => {
  135. if(data.msg.length > 9){
  136. uni.navigateTo({
  137. // url: "/pages/detail/index?luggageNum=" + data.msg
  138. url: "/pages/detail/index?luggageNum=3999483183"
  139. })
  140. }
  141. });
  142. if(this.$storage.get('airport')){
  143. this.index = this.$storage.get('airport')
  144. }
  145. },
  146. onHide() {
  147. uni.$off("scancodemsg");
  148. },
  149. mounted() {
  150. },
  151. components: {
  152. Nav
  153. },
  154. watch: {
  155. allshow () {
  156. if (this.allshow) {
  157. uni.hideTabBar({})
  158. } else{
  159. uni.showTabBar()
  160. }
  161. },
  162. all () {
  163. if (this.all) {
  164. uni.hideTabBar({})
  165. } else{
  166. uni.showTabBar()
  167. }
  168. }
  169. },
  170. methods: {
  171. recup () {
  172. uni.redirectTo({
  173. url: "/pages/myrecords/index"
  174. })
  175. },
  176. fall () {
  177. uni.redirectTo({
  178. url: "/pages/index/index"
  179. })
  180. },
  181. upindiv () {
  182. uni.redirectTo({
  183. url: "/pages/individual/index"
  184. })
  185. },
  186. uphelp () {
  187. uni.redirectTo({
  188. url: "/pages/help/index"
  189. })
  190. },
  191. uppop () {
  192. uni.hideTabBar({})
  193. this.all = true
  194. },
  195. uppops () {
  196. uni.hideTabBar({})
  197. this.allshow = true
  198. },
  199. selectup (index) {
  200. this.action = index
  201. },
  202. topup () {
  203. this.all = false
  204. this.allshow = false
  205. uni.showTabBar()//显示导航栏
  206. }
  207. },
  208. }
  209. </script>
  210. <style lang="scss" scoped>
  211. .app-content{
  212. // position: relative;
  213. >.tuku{
  214. position: absolute;
  215. z-index: -1;
  216. width: 100%;
  217. top: 0;
  218. }
  219. >.cont{
  220. z-index: 999;
  221. >.photograph{
  222. width: 6rem;
  223. height: 6rem;
  224. // background: red;
  225. border-radius: 50%;
  226. margin: 0 auto;
  227. margin-top: .625rem;
  228. }
  229. >.details{
  230. width: 100%;
  231. height: 3.125rem;
  232. display: flex;
  233. flex-direction: column;
  234. align-items: center;
  235. justify-content: center;
  236. // background: red;
  237. margin-top: .625rem;
  238. >p{
  239. color: rgb(255, 255, 255);
  240. font-family: Noto Sans SC;
  241. font-size: 1rem;
  242. font-weight: 500;
  243. }
  244. >span{
  245. color: rgb(255, 255, 255);
  246. font-family: Noto Sans SC;
  247. font-size: .8125rem;
  248. font-weight: 500;
  249. }
  250. }
  251. >.detail_list{
  252. width: 100%;
  253. // background: red;
  254. display: flex;
  255. flex-wrap: wrap;
  256. margin-top: 1rem;
  257. >.list_child{
  258. width: 33%;
  259. display: flex;
  260. flex-direction: column;
  261. justify-items: center;
  262. align-items: center;
  263. margin-bottom: 1rem;
  264. >p{
  265. color: rgb(255, 255, 255);
  266. font-family: Noto Sans SC;
  267. font-size: .8125rem;
  268. font-weight: 500;
  269. }
  270. >span{
  271. color: rgb(255, 255, 255);
  272. font-family: Helvetica;
  273. font-size: 1rem;
  274. font-weight: 700;
  275. }
  276. }
  277. }
  278. >.detail_type{
  279. height: calc(100vh - 35.875rem);
  280. padding: 0 3.125rem 0 3.125rem;
  281. display: flex;
  282. justify-content: space-around;
  283. flex-wrap: wrap;
  284. flex: 1;
  285. >.list_child{
  286. width: 7.5rem;
  287. height: 7.5rem;
  288. 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%);
  289. box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  290. border-radius: 4px;
  291. margin-bottom: 4%;
  292. display: flex;
  293. flex-direction: column;
  294. justify-content: center;
  295. align-items: center;
  296. >.log{
  297. width: 2.25rem;
  298. height: 2.25rem;
  299. // background: rgb(196, 196, 196);
  300. margin-bottom: .5rem;
  301. }
  302. .bg1{
  303. background: url('../../static/jilu.png') no-repeat;
  304. background-size: 100% 100%;
  305. }
  306. .bg2{
  307. background: url('../../static/kaiguan.png') no-repeat;
  308. background-size: 100% 100%;
  309. }
  310. .bg3{
  311. background: url('../../static/gongzuo.png') no-repeat;
  312. background-size: 100% 100%;
  313. }
  314. .bg4{
  315. background: url('../../static/bagzu.png') no-repeat;
  316. background-size: 100% 100%;
  317. }
  318. >p{
  319. color: rgb(255, 255, 255);
  320. font-family: Noto Sans SC;
  321. font-size: .9375rem;
  322. font-weight: 500;
  323. }
  324. }
  325. }
  326. }
  327. .popup_title{
  328. width: 100%;
  329. height: 4.5rem;
  330. background: rgb(255, 255, 255);
  331. border-radius: 10px 10px 0px 0px;
  332. display: flex;
  333. align-items: center;
  334. color: rgb(16, 17, 22);
  335. font-family: Noto Sans SC;
  336. font-size: 1rem;
  337. font-weight: 700;
  338. >p{
  339. margin-left: 1.5rem;
  340. color: rgb(16, 17, 22);
  341. font-family: Noto Sans SC;
  342. font-size: 1rem;
  343. font-weight: 700;
  344. }
  345. }
  346. .popup_content{
  347. width: 100%;
  348. background: rgb(255, 255, 255);
  349. >ul{
  350. width: 100%;
  351. >li{
  352. width: 82%;
  353. height: 2.6875rem;
  354. display: flex;
  355. align-items: center;
  356. justify-content: space-between;
  357. >p{
  358. color: rgb(0, 0, 0);
  359. font-family: Noto Sans SC;
  360. font-size: .8125rem;
  361. font-weight: 400;
  362. }
  363. >.start{
  364. width: 1rem;
  365. height: 1rem;
  366. background: rgb(37, 121, 160);
  367. display: flex;
  368. align-items: center;
  369. justify-content: center;
  370. border-radius: 50%;
  371. }
  372. }
  373. }
  374. >.top{
  375. width: 100%;
  376. height: .875rem;
  377. background: rgb(249, 249, 249);
  378. }
  379. >.cancel{
  380. width: 100%;
  381. height: 3.3125rem;
  382. display: flex;
  383. align-items: center;
  384. justify-content: center;
  385. color: rgb(0, 0, 0);
  386. font-family: Noto Sans SC;
  387. font-size: .9375rem;
  388. font-weight: 500;
  389. }
  390. }
  391. }
  392. </style>