index.vue 4.4 KB

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