index.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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="times"><p>{{ newData }}</p>{{ newDataday }}</view>
  6. <view class="content">
  7. <view class="card" @tap="clickOrder('分拣')">
  8. <p>分拣</p>
  9. <span>已完成件数</span>
  10. <span>50件</span>
  11. </view>
  12. <view class="card" @tap="clickOrder('装车')">
  13. <p>装车</p>
  14. <span>已完成件数</span>
  15. <span>50件</span>
  16. </view>
  17. <view class="card" @tap="clickOrder('装机')">
  18. <p>装机</p>
  19. <span>已完成件数</span>
  20. <span>50件</span>
  21. </view>
  22. <view class="card" @tap="clickOrder('卸机')">
  23. <p>卸机</p>
  24. <span>已完成件数</span>
  25. <span>50件</span>
  26. </view>
  27. <view class="card" @tap="clickOrder('到达')">
  28. <p>到达</p>
  29. <span>已完成件数</span>
  30. <span>50件</span>
  31. </view>
  32. <view class="card" @tap="clickOrder('提取')">
  33. <p>提取</p>
  34. <span>已完成件数</span>
  35. <span>50件</span>
  36. </view>
  37. <view class="card" @tap="clickOrder('异常登记')">
  38. <p>异常登记</p>
  39. <span>已完成件数</span>
  40. <span>50件</span>
  41. </view>
  42. <view class="card_no">
  43. </view>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. import Nav from '../../components/header/nav.vue'
  49. import {allScan, startScan ,stopScan,Format} from '@/components/utils/validate'
  50. export default {
  51. data() {
  52. return {
  53. input: '',
  54. main: null,
  55. poll: null,
  56. filter:null,
  57. pusher:null,
  58. intentServer:null,
  59. timeShow: true,
  60. arr: [],
  61. navname: '首页',
  62. icon: 'static/beijing.png',
  63. newData: '',
  64. newDataday: ''
  65. }
  66. },
  67. created(option) {
  68. this.arr = allScan(this.main,this.poll,this.filter)
  69. startScan(this.arr[0],this.arr[1],this.arr[2])
  70. },
  71. onLoad(){
  72. },
  73. onUnload() {
  74. },
  75. onShow() {
  76. },
  77. mounted() {
  78. this.datatime()
  79. },
  80. beforeDestroy() {
  81. console.log(this.arr[0],this.arr[1])
  82. },
  83. components: {
  84. Nav
  85. },
  86. methods: {
  87. datatime () {
  88. this.newDataday = Format("yyyy/MM/dd", new Date());
  89. setInterval(() => {
  90. this.newData = Format("hh:mm", new Date());
  91. }, 1000);
  92. },
  93. clickOrder (data) {
  94. uni.navigateTo({
  95. url: "/pages/sorting/index?item=" + encodeURIComponent(JSON.stringify(data))
  96. })
  97. // uni.navigateTo({
  98. // url: "/pages/myrecords/index"
  99. // })
  100. }
  101. },
  102. }
  103. </script>
  104. <style lang="scss" scoped>
  105. .app-content{
  106. position: relative;
  107. >.tuku{
  108. position: absolute;
  109. z-index: -1;
  110. width: 100%;
  111. top: 0;
  112. }
  113. >.times{
  114. width: 100%;
  115. height: 4.6875rem;
  116. display: flex;
  117. align-items: center;
  118. justify-content: center;
  119. color: rgb(255, 255, 255);
  120. font-family: Noto Sans SC;
  121. font-size: 18px;
  122. font-weight: 700;
  123. p{
  124. margin-right: .625rem;
  125. }
  126. }
  127. .content{
  128. padding: 0 1.5rem 0 1.5rem;
  129. display: flex;
  130. justify-content: space-around;
  131. flex-wrap: wrap;
  132. .card{
  133. width: 7.5rem;
  134. height: 7.5rem;
  135. /* 卡片渐变 */
  136. 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%);
  137. box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  138. border-radius: 4px;
  139. margin-bottom: 2.25rem;
  140. display: flex;
  141. flex-direction: column;
  142. justify-content: center;
  143. align-items: center;
  144. >p{
  145. color: rgb(255, 255, 255);
  146. font-family: Noto Sans SC;
  147. font-size: 18px;
  148. font-weight: 700;
  149. margin-bottom: .375rem;
  150. line-height: 1.6875rem;
  151. }
  152. >span{
  153. color: rgb(255, 255, 255);
  154. font-family: Noto Sans SC;
  155. font-size: 13px;
  156. font-weight: 500;
  157. line-height: 1.1875rem;
  158. }
  159. }
  160. .card_no{
  161. width: 7.5rem;
  162. height: 7.5rem;
  163. }
  164. }
  165. }
  166. </style>