index.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  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" @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. list: [{
  106. name: '相机'
  107. },
  108. {
  109. name: '激光扫描枪'
  110. },
  111. {
  112. name: 'RFID读取器'
  113. }],
  114. lists: [
  115. {
  116. name: '单次扫描'
  117. },
  118. {
  119. name: '连续扫描'
  120. }
  121. ]
  122. }
  123. },
  124. created(option) {
  125. },
  126. onLoad(){
  127. },
  128. onUnload() {
  129. },
  130. onShow() {
  131. // uni.hideTabBar()//关闭导航栏
  132. // uni.showTabBar()//显示导航栏
  133. },
  134. mounted() {
  135. },
  136. components: {
  137. Nav
  138. },
  139. methods: {
  140. recup () {
  141. uni.redirectTo({
  142. url: "/pages/myrecords/index"
  143. })
  144. },
  145. fall () {
  146. uni.switchTab({
  147. url: "/pages/index/index"
  148. })
  149. },
  150. upindiv () {
  151. uni.redirectTo({
  152. url: "/pages/individual/index"
  153. })
  154. },
  155. uphelp () {
  156. uni.redirectTo({
  157. url: "/pages/help/index"
  158. })
  159. },
  160. uppop () {
  161. uni.hideTabBar({})
  162. this.all = true
  163. },
  164. uppops () {
  165. uni.hideTabBar({})
  166. this.allshow = true
  167. },
  168. selectup (index) {
  169. this.action = index
  170. },
  171. topup () {
  172. this.all = false
  173. this.allshow = false
  174. uni.showTabBar()//显示导航栏
  175. }
  176. },
  177. }
  178. </script>
  179. <style lang="scss" scoped>
  180. .app-content{
  181. // position: relative;
  182. >.tuku{
  183. position: absolute;
  184. z-index: -1;
  185. width: 100%;
  186. top: 0;
  187. }
  188. >.cont{
  189. z-index: 999;
  190. >.photograph{
  191. width: 6rem;
  192. height: 6rem;
  193. // background: red;
  194. border-radius: 50%;
  195. margin: 0 auto;
  196. margin-top: .625rem;
  197. }
  198. >.details{
  199. width: 100%;
  200. height: 3.125rem;
  201. display: flex;
  202. flex-direction: column;
  203. align-items: center;
  204. justify-content: center;
  205. // background: red;
  206. margin-top: .625rem;
  207. >p{
  208. color: rgb(255, 255, 255);
  209. font-family: Noto Sans SC;
  210. font-size: 1rem;
  211. font-weight: 500;
  212. }
  213. >span{
  214. color: rgb(255, 255, 255);
  215. font-family: Noto Sans SC;
  216. font-size: .8125rem;
  217. font-weight: 500;
  218. }
  219. }
  220. >.detail_list{
  221. width: 100%;
  222. // background: red;
  223. display: flex;
  224. flex-wrap: wrap;
  225. margin-top: 1rem;
  226. >.list_child{
  227. width: 33%;
  228. display: flex;
  229. flex-direction: column;
  230. justify-items: center;
  231. align-items: center;
  232. margin-bottom: 1rem;
  233. >p{
  234. color: rgb(255, 255, 255);
  235. font-family: Noto Sans SC;
  236. font-size: .8125rem;
  237. font-weight: 500;
  238. }
  239. >span{
  240. color: rgb(255, 255, 255);
  241. font-family: Helvetica;
  242. font-size: 1rem;
  243. font-weight: 700;
  244. }
  245. }
  246. }
  247. >.detail_type{
  248. height: calc(100vh - 35.875rem);
  249. padding: 0 3.125rem 0 3.125rem;
  250. display: flex;
  251. justify-content: space-around;
  252. flex-wrap: wrap;
  253. flex: 1;
  254. >.list_child{
  255. width: 7.5rem;
  256. height: 7.5rem;
  257. background: rgb(37, 121, 160);
  258. box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  259. border-radius: 4px;
  260. margin-bottom: 4%;
  261. display: flex;
  262. flex-direction: column;
  263. justify-content: center;
  264. align-items: center;
  265. >.log{
  266. width: 2.25rem;
  267. height: 2.25rem;
  268. // background: rgb(196, 196, 196);
  269. margin-bottom: .5rem;
  270. }
  271. .bg1{
  272. background: url('../../static/gongzuo.png') no-repeat;
  273. background-size: 100% 100%;
  274. }
  275. .bg2{
  276. background: url('../../static/kaiguan.png') no-repeat;
  277. background-size: 100% 100%;
  278. }
  279. .bg3{
  280. background: url('../../static/jilu.png') no-repeat;
  281. background-size: 100% 100%;
  282. }
  283. .bg4{
  284. background: url('../../static/bagzu.png') no-repeat;
  285. background-size: 100% 100%;
  286. }
  287. >p{
  288. color: rgb(255, 255, 255);
  289. font-family: Noto Sans SC;
  290. font-size: .9375rem;
  291. font-weight: 500;
  292. }
  293. }
  294. }
  295. }
  296. .popup_title{
  297. width: 100%;
  298. height: 4.5rem;
  299. background: rgb(255, 255, 255);
  300. border-radius: 10px 10px 0px 0px;
  301. display: flex;
  302. align-items: center;
  303. color: rgb(16, 17, 22);
  304. font-family: Noto Sans SC;
  305. font-size: 1rem;
  306. font-weight: 700;
  307. >p{
  308. margin-left: 1.5rem;
  309. color: rgb(16, 17, 22);
  310. font-family: Noto Sans SC;
  311. font-size: 1rem;
  312. font-weight: 700;
  313. }
  314. }
  315. .popup_content{
  316. width: 100%;
  317. background: rgb(255, 255, 255);
  318. >ul{
  319. width: 100%;
  320. >li{
  321. width: 82%;
  322. height: 2.6875rem;
  323. display: flex;
  324. align-items: center;
  325. justify-content: space-between;
  326. >p{
  327. color: rgb(0, 0, 0);
  328. font-family: Noto Sans SC;
  329. font-size: .8125rem;
  330. font-weight: 400;
  331. }
  332. >.start{
  333. width: 1rem;
  334. height: 1rem;
  335. background: rgb(37, 121, 160);
  336. display: flex;
  337. align-items: center;
  338. justify-content: center;
  339. border-radius: 50%;
  340. }
  341. }
  342. }
  343. >.top{
  344. width: 100%;
  345. height: .875rem;
  346. background: rgb(249, 249, 249);
  347. }
  348. >.cancel{
  349. width: 100%;
  350. height: 3.3125rem;
  351. display: flex;
  352. align-items: center;
  353. justify-content: center;
  354. color: rgb(0, 0, 0);
  355. font-family: Noto Sans SC;
  356. font-size: .9375rem;
  357. font-weight: 500;
  358. }
  359. }
  360. }
  361. </style>