index.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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"></Nav>
  5. <view class="cont">
  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">
  45. <view class="log bg3"></view>
  46. <p>工作方式</p>
  47. </view>
  48. <view class="list_child">
  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. </view>
  72. </template>
  73. <script>
  74. import Nav from '../../components/header/nav.vue'
  75. // import Popup from '../../uni_modules/z-popup/components/z-popup'
  76. export default {
  77. data() {
  78. return {
  79. main: null,
  80. poll: null,
  81. filter:null,
  82. pusher:null,
  83. intentServer:null,
  84. navname: '我的',
  85. all: false,
  86. action: '',
  87. list: [{
  88. name: '相机'
  89. },
  90. {
  91. name: '激光扫描枪'
  92. },
  93. {
  94. name: 'RFID读取器'
  95. }]
  96. }
  97. },
  98. created(option) {
  99. },
  100. onLoad(){
  101. },
  102. onUnload() {
  103. },
  104. onShow() {
  105. // uni.hideTabBar()//关闭导航栏
  106. // uni.showTabBar()//显示导航栏
  107. },
  108. mounted() {
  109. },
  110. components: {
  111. Nav
  112. },
  113. methods: {
  114. recup () {
  115. uni.redirectTo({
  116. url: "/pages/myrecords/index"
  117. })
  118. },
  119. fall () {
  120. uni.switchTab({
  121. url: "/pages/index/index"
  122. })
  123. },
  124. upindiv () {
  125. uni.redirectTo({
  126. url: "/pages/individual/index"
  127. })
  128. },
  129. uppop () {
  130. uni.hideTabBar({})
  131. this.all = true
  132. },
  133. selectup (index) {
  134. this.action = index
  135. },
  136. topup () {
  137. this.all = false
  138. uni.showTabBar()//显示导航栏
  139. }
  140. },
  141. }
  142. </script>
  143. <style lang="scss" scoped>
  144. .app-content{
  145. // position: relative;
  146. >.tuku{
  147. position: absolute;
  148. z-index: -1;
  149. width: 100%;
  150. top: 0;
  151. }
  152. >.cont{
  153. z-index: 999;
  154. >.photograph{
  155. width: 6rem;
  156. height: 6rem;
  157. // background: red;
  158. border-radius: 50%;
  159. margin: 0 auto;
  160. margin-top: .625rem;
  161. }
  162. >.details{
  163. width: 100%;
  164. height: 3.125rem;
  165. display: flex;
  166. flex-direction: column;
  167. align-items: center;
  168. justify-content: center;
  169. // background: red;
  170. margin-top: .625rem;
  171. >p{
  172. color: rgb(255, 255, 255);
  173. font-family: Noto Sans SC;
  174. font-size: 1rem;
  175. font-weight: 500;
  176. }
  177. >span{
  178. color: rgb(255, 255, 255);
  179. font-family: Noto Sans SC;
  180. font-size: .8125rem;
  181. font-weight: 500;
  182. }
  183. }
  184. >.detail_list{
  185. width: 100%;
  186. // background: red;
  187. display: flex;
  188. flex-wrap: wrap;
  189. margin-top: 1rem;
  190. >.list_child{
  191. width: 33%;
  192. display: flex;
  193. flex-direction: column;
  194. justify-items: center;
  195. align-items: center;
  196. margin-bottom: 1rem;
  197. >p{
  198. color: rgb(255, 255, 255);
  199. font-family: Noto Sans SC;
  200. font-size: .8125rem;
  201. font-weight: 500;
  202. }
  203. >span{
  204. color: rgb(255, 255, 255);
  205. font-family: Helvetica;
  206. font-size: 1rem;
  207. font-weight: 700;
  208. }
  209. }
  210. }
  211. >.detail_type{
  212. height: calc(100vh - 35.875rem);
  213. padding: 0 3.125rem 0 3.125rem;
  214. display: flex;
  215. justify-content: space-around;
  216. flex-wrap: wrap;
  217. flex: 1;
  218. >.list_child{
  219. width: 7.5rem;
  220. height: 7.5rem;
  221. background: rgb(37, 121, 160);
  222. box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  223. border-radius: 4px;
  224. margin-bottom: 4%;
  225. display: flex;
  226. flex-direction: column;
  227. justify-content: center;
  228. align-items: center;
  229. >.log{
  230. width: 2.25rem;
  231. height: 2.25rem;
  232. // background: rgb(196, 196, 196);
  233. margin-bottom: .5rem;
  234. }
  235. .bg1{
  236. background: url('../../static/gongzuo.png') no-repeat;
  237. background-size: 100% 100%;
  238. }
  239. .bg2{
  240. background: url('../../static/kaiguan.png') no-repeat;
  241. background-size: 100% 100%;
  242. }
  243. .bg3{
  244. background: url('../../static/jilu.png') no-repeat;
  245. background-size: 100% 100%;
  246. }
  247. .bg4{
  248. background: url('../../static/bagzu.png') no-repeat;
  249. background-size: 100% 100%;
  250. }
  251. >p{
  252. color: rgb(255, 255, 255);
  253. font-family: Noto Sans SC;
  254. font-size: .9375rem;
  255. font-weight: 500;
  256. }
  257. }
  258. }
  259. }
  260. .popup_title{
  261. width: 100%;
  262. height: 4.5rem;
  263. background: rgb(255, 255, 255);
  264. border-radius: 10px 10px 0px 0px;
  265. display: flex;
  266. align-items: center;
  267. color: rgb(16, 17, 22);
  268. font-family: Noto Sans SC;
  269. font-size: 1rem;
  270. font-weight: 700;
  271. >p{
  272. margin-left: 1.5rem;
  273. color: rgb(16, 17, 22);
  274. font-family: Noto Sans SC;
  275. font-size: 1rem;
  276. font-weight: 700;
  277. }
  278. }
  279. .popup_content{
  280. width: 100%;
  281. background: rgb(255, 255, 255);
  282. >ul{
  283. width: 100%;
  284. >li{
  285. width: 82%;
  286. height: 2.6875rem;
  287. display: flex;
  288. align-items: center;
  289. justify-content: space-between;
  290. >p{
  291. color: rgb(0, 0, 0);
  292. font-family: Noto Sans SC;
  293. font-size: .8125rem;
  294. font-weight: 400;
  295. }
  296. >.start{
  297. width: 1rem;
  298. height: 1rem;
  299. background: rgb(37, 121, 160);
  300. display: flex;
  301. align-items: center;
  302. justify-content: center;
  303. border-radius: 50%;
  304. }
  305. }
  306. }
  307. >.top{
  308. width: 100%;
  309. height: .875rem;
  310. background: rgb(249, 249, 249);
  311. }
  312. >.cancel{
  313. width: 100%;
  314. height: 3.3125rem;
  315. display: flex;
  316. align-items: center;
  317. justify-content: center;
  318. color: rgb(0, 0, 0);
  319. font-family: Noto Sans SC;
  320. font-size: .9375rem;
  321. font-weight: 500;
  322. }
  323. }
  324. }
  325. </style>