index.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <template>
  2. <view class="app-content">
  3. <img src="~@/static/beijing.png" alt="" class="tuku">
  4. <Nav :navname.sync="navname" :navtype="false" ></Nav>
  5. <view class="content">
  6. <view class="card" @tap="clickOrder('分拣')">
  7. <view class="card_name">
  8. <view class="name">分拣</view>
  9. <view class="number">已完成件数 50</view>
  10. </view>
  11. <view class="card_right"></view>
  12. </view>
  13. <view class="card" @tap="clickOrder('装车')">
  14. <view class="card_name">
  15. <view class="name">装车</view>
  16. <view class="number">已完成件数 50</view>
  17. </view>
  18. <view class="card_right"></view>
  19. </view>
  20. <view class="card" @tap="clickOrder('上机')">
  21. <view class="card_name">
  22. <view class="name">上机</view>
  23. <view class="number">已完成件数 50</view>
  24. </view>
  25. <view class="card_right"></view>
  26. </view>
  27. <view class="card" @tap="clickOrder('卸机')">
  28. <view class="card_name">
  29. <view class="name">卸机</view>
  30. <view class="number">已完成件数 50</view>
  31. </view>
  32. <view class="card_right"></view>
  33. </view>
  34. <view class="card" @tap="clickOrder('卸车')">
  35. <view class="card_name">
  36. <view class="name">卸车</view>
  37. <view class="number">已完成件数 50</view>
  38. </view>
  39. <view class="card_right">
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. import Nav from '../../components/header/nav.vue'
  47. import {allScan, startScan ,stopScan} from '@/components/utils/validate'
  48. export default {
  49. data() {
  50. return {
  51. input: '',
  52. main: null,
  53. poll: null,
  54. filter:null,
  55. pusher:null,
  56. intentServer:null,
  57. arr: [],
  58. navname: '首页',
  59. }
  60. },
  61. created(option) {
  62. this.arr = allScan(this.main,this.poll,this.filter)
  63. startScan(this.arr[0],this.arr[1],this.arr[2])
  64. },
  65. onLoad(){
  66. },
  67. onUnload() {
  68. },
  69. onShow() {
  70. },
  71. mounted() {
  72. console.log(this.main,this.poll)
  73. },
  74. beforeDestroy() {
  75. console.log(this.arr[0],this.arr[1])
  76. },
  77. components: {
  78. Nav
  79. },
  80. methods: {
  81. clickOrder (data) {
  82. uni.navigateTo({
  83. url: "/pages/sorting/index?item=" + encodeURIComponent(JSON.stringify(data))
  84. })
  85. }
  86. },
  87. }
  88. </script>
  89. <style lang="scss" scoped>
  90. .app-content{
  91. position: relative;
  92. >.tuku{
  93. position: absolute;
  94. z-index: -1;
  95. width: 100%;
  96. top: 0;
  97. }
  98. .content{
  99. padding: 0 1.5rem 0 1.5rem;
  100. .card{
  101. width: 100%;
  102. height: 5.5rem;
  103. background: rgb(37, 121, 160);
  104. box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  105. border-radius: 4px;
  106. margin-top: .75rem;
  107. display: flex;
  108. justify-content: space-between;
  109. align-items: center;
  110. >.card_name{
  111. margin-left: 1.25rem;
  112. >.name{
  113. color: rgb(255, 255, 255);
  114. font-family: Noto Sans SC;
  115. font-size: 24px;
  116. margin-bottom: 4px;
  117. }
  118. >.number{
  119. color: rgb(255, 255, 255);
  120. font-family: Noto Sans SC;
  121. font-size: 13px;
  122. }
  123. }
  124. >.card_right{
  125. margin-right: 2rem;
  126. width: 2rem;
  127. height: 2rem;
  128. background: url('../../static/Icon@1x.png') no-repeat;
  129. background-size: 100% 100%;
  130. }
  131. }
  132. }
  133. }
  134. </style>