wholesale.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <view class="wholesale">
  3. <view class="title">
  4. <view class="img">
  5. <image src="../../../static/img/list1.png" mode=""></image>
  6. </view>
  7. <view class="title-t"> 批发专区 </view>
  8. <view class="about"> 限时抢购 </view>
  9. </view>
  10. <view class="date">
  11. <image src="@/static/error/errorImage.jpg"></image>
  12. <image src="@/static/error/errorImage.jpg"></image>
  13. <image src="@/static/error/errorImage.jpg"></image>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. $grey: #95A0B1;
  23. $text: #333333;
  24. $red: #FF4C4C;
  25. .wholesale {
  26. padding: 20rpx;
  27. background-color: #fff;
  28. margin : 20rpx 0;
  29. .title {
  30. display: flex;
  31. line-height: 40rpx;
  32. .title-t {
  33. color: $text;
  34. font-weight: bold;
  35. margin: 0 20rpx;
  36. font-size: 34rpx;
  37. }
  38. .about {
  39. font-size: 24rpx;
  40. color: $grey;
  41. }
  42. image {
  43. width: 40rpx;
  44. height: 40rpx;
  45. }
  46. }
  47. .date {
  48. padding: 30rpx 0;
  49. display: flex;
  50. justify-content: space-between;
  51. image {
  52. border-radius: 20rpx;
  53. max-width: 32%;
  54. width: 220rpx;
  55. height: 300rpx;
  56. }
  57. }
  58. }
  59. </style>