pickingList.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <view>
  3. <view class="logs-ul">
  4. <view class="logs-li clearfix">
  5. <view class="clearfix logs-goods">
  6. <view class="float_left goods-img">
  7. <image src="../../static/img/user-re.png" mode="aspectFill"></image>
  8. </view>
  9. <view class="float_left goods-info">
  10. <view class="goods-name ellipsis">拣货商品</view>
  11. <view class="other-info">
  12. 条码:
  13. </view>
  14. <view class="other-info">
  15. <view class="info-li">货拉:</view>
  16. <view class="info-li">数量:2PCS</view>
  17. </view>
  18. <view class="other-info">
  19. 备注:
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="submit-btn">
  26. <viwe class="float_left" style="color: #B8C0C8;text-align: center;margin-left: 40rpx;">
  27. <view>
  28. <u-icon name="file-text" style="font-size: 40rpx;"></u-icon>
  29. <view style="font-size: 20rpx;">打印</view>
  30. </view>
  31. </viwe>
  32. <view class="btn-min-valet-order">继续拣货</view>
  33. <view class="btn-min">完成拣货</view>
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. export default {
  39. data() {
  40. return {
  41. };
  42. }
  43. }
  44. </script>
  45. <style lang="scss" scoped>
  46. .logs-ul {
  47. .logs-li {
  48. width: 100%;
  49. background-color: #ffffff;
  50. padding: 24rpx;
  51. .logs-goods {
  52. position: relative;
  53. .price {
  54. position: absolute;
  55. color: $uni-color-error;
  56. top: 50%;
  57. right: 0;
  58. transform: translateY(-50%);
  59. }
  60. }
  61. .goods-img {
  62. position: relative;
  63. width: 100rpx;
  64. height: 100rpx;
  65. border-radius: 20rpx;
  66. overflow: hidden;
  67. margin-right: 20rpx;
  68. border: 1px solid #f5f5f5;
  69. image {
  70. width: 100%;
  71. height: 100%;
  72. display: block;
  73. }
  74. }
  75. .goods-info {
  76. width: 520rpx;
  77. .goods-name {
  78. font-weight: bold;
  79. }
  80. .date-time {
  81. font-size: 22rpx;
  82. }
  83. .other-info {
  84. padding-top: 10rpx;
  85. display: flex;
  86. font-size: 22rpx;
  87. color: #6c6c6c;
  88. .info-li {
  89. flex: 1;
  90. }
  91. }
  92. }
  93. }
  94. }
  95. .submit-btn {
  96. width: 100%;
  97. height: 98rpx;
  98. font-size: 28rpx;
  99. color: #fff;
  100. font-family: PingFangSC-Medium, PingFang SC;
  101. .btn-min {
  102. float: left;
  103. width: 240rpx;
  104. height: 64rpx;
  105. line-height: 64rpx;
  106. background: #4076d6;
  107. border-radius: 32rpx;
  108. margin-left: 40rpx;
  109. }
  110. .btn-min-valet-order {
  111. float: left;
  112. width: 240rpx;
  113. height: 64rpx;
  114. line-height: 64rpx;
  115. text-align: center;
  116. background: #fff;
  117. border-radius: 32rpx;
  118. border: 1px solid #979797;
  119. color: #2d405e;
  120. margin-left: 70rpx;
  121. }
  122. }
  123. </style>