store.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <template>
  2. <view class="store">
  3. <view class="list">
  4. <view class="item">
  5. <view class="left">
  6. <view class="img">
  7. <image src="@/static/error/errorImage.jpg" mode=""></image>
  8. </view>
  9. <view class="middle">
  10. <view class="name">
  11. <text class="storeName">陀罗台州店</text><br>
  12. <text class="address">台州市椒江区市府大道120号</text>
  13. </view>
  14. <view class="distance">
  15. <image src="@/static/icon/img01.png" mode=""></image>
  16. 距离1.5KM
  17. </view>
  18. </view>
  19. </view>
  20. <view class="about">
  21. 门店
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. </script>
  29. <style lang="scss" scoped>
  30. $grey: #95A0B1;
  31. $text: #333333;
  32. $red: #FF4C4C;
  33. .store {
  34. .list {
  35. .item {
  36. box-shadow: 2rpx 2rpx 10rpx #e1e1e1;
  37. height: 220rpx;
  38. border-radius: 20rpx;
  39. background-color: #fff;
  40. margin: 20rpx;
  41. padding: 20rpx;
  42. display: flex;
  43. justify-content: space-between;
  44. .left {
  45. display: flex;
  46. .img {
  47. margin-right: 20rpx;
  48. image {
  49. border-radius: 20rpx;
  50. width: 180rpx;
  51. height: 180rpx;
  52. }
  53. }
  54. .middle {
  55. display: grid;
  56. align-content: space-between;
  57. .name {
  58. .storeName {
  59. font-weight: bold;
  60. font-size: 32rpx;
  61. color: #333333;
  62. }
  63. .address {
  64. font-size: 20rpx;
  65. color: #6c6c6c;
  66. }
  67. }
  68. .distance {
  69. font-size: 26rpx;
  70. color: $grey;
  71. image {
  72. width: 20rpx;
  73. height: 25rpx;
  74. margin-right: 10rpx;
  75. }
  76. }
  77. }
  78. }
  79. .about {
  80. font-size: 26rpx;
  81. padding: 0 10rpx;
  82. border-radius: 10rpx;
  83. height: 50rpx;
  84. line-height: 50rpx;
  85. color: #fff;
  86. background: linear-gradient(90deg, #FFBD70 0%, #FF8F44 100%);
  87. }
  88. }
  89. }
  90. }
  91. </style>