index.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <view class="app-content">
  3. <img :src="icon" 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. icon: 'static/beijing.png'
  60. }
  61. },
  62. created(option) {
  63. this.arr = allScan(this.main,this.poll,this.filter)
  64. startScan(this.arr[0],this.arr[1],this.arr[2])
  65. },
  66. onLoad(){
  67. },
  68. onUnload() {
  69. },
  70. onShow() {
  71. },
  72. mounted() {
  73. console.log(this.main,this.poll)
  74. },
  75. beforeDestroy() {
  76. console.log(this.arr[0],this.arr[1])
  77. },
  78. components: {
  79. Nav
  80. },
  81. methods: {
  82. clickOrder (data) {
  83. uni.navigateTo({
  84. url: "/pages/sorting/index?item=" + encodeURIComponent(JSON.stringify(data))
  85. })
  86. // uni.navigateTo({
  87. // url: "/pages/myrecords/index"
  88. // })
  89. }
  90. },
  91. }
  92. </script>
  93. <style lang="scss" scoped>
  94. .app-content{
  95. position: relative;
  96. >.tuku{
  97. position: absolute;
  98. z-index: -1;
  99. width: 100%;
  100. top: 0;
  101. }
  102. .content{
  103. padding: 0 1.5rem 0 1.5rem;
  104. .card{
  105. width: 100%;
  106. height: 5.5rem;
  107. background: rgb(37, 121, 160);
  108. box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  109. border-radius: 4px;
  110. margin-top: .75rem;
  111. display: flex;
  112. justify-content: space-between;
  113. align-items: center;
  114. >.card_name{
  115. margin-left: 1.25rem;
  116. >.name{
  117. color: rgb(255, 255, 255);
  118. font-family: Noto Sans SC;
  119. font-size: 24px;
  120. margin-bottom: 4px;
  121. }
  122. >.number{
  123. color: rgb(255, 255, 255);
  124. font-family: Noto Sans SC;
  125. font-size: 13px;
  126. }
  127. }
  128. >.card_right{
  129. margin-right: 2rem;
  130. width: 2rem;
  131. height: 2rem;
  132. background: url('../../static/Icon@1x.png') no-repeat;
  133. background-size: 100% 100%;
  134. }
  135. }
  136. }
  137. }
  138. </style>