detail.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <template>
  2. <div class="peripheralDetail">
  3. <div class="peripheralFirstBox">
  4. <div class="periTitle">福奈特洗衣店(基金PARK店) <span class="periType">干洗</span></div>
  5. <div class="periTime">更新时间:2021-03-21</div>
  6. <div class="periAddress">
  7. <span>地址:无锡市经开区XXXXXXXXXX</span>
  8. <img src="../parkActivity/image/dhIcon.png" class="dhIcon">
  9. </div>
  10. <div class="contactBox">
  11. <span class="contackLeft">
  12. <span style="color: #666666;font-size: 28rpx">联系电话:</span>
  13. <span style="color: #18172A;font-size: 36rpx;font-weight: 600">0510-680**808</span>
  14. </span>
  15. <img src="https://www.idea-co-sf.com/gardenProduct/image/phoneIcon.png" class="phoneIcon">
  16. </div>
  17. </div>
  18. <div class="peripheralFirstBox" style="padding: 32rpx">
  19. <div class="periTitle" style="padding: 0 0 32rpx 0">简介</div>
  20. <img src="https://www.idea-co-sf.com/gardenProduct/image/img1.png" class="firstImg"/>
  21. <div class="perInfo">
  22. 洗衣拥有20多年的品牌沉淀,连续5年加盟稳居全国前列硬件上洗衣拥有20多年的品牌沉淀,连续5年加盟稳居全国前列,硬件上洗衣拥有20多年的品牌沉淀,连续5年加盟稳居全国前列,硬件上洗衣拥有20多年的品牌沉淀.
  23. </div>
  24. </div>
  25. </div>
  26. </template>
  27. <script>
  28. export default {
  29. name: "detail"
  30. }
  31. </script>
  32. <style lang="scss">
  33. .peripheralDetail{
  34. box-sizing: border-box;
  35. .peripheralFirstBox{
  36. margin: 24rpx 0;
  37. padding: 32rpx 0;
  38. background: white;
  39. box-sizing: border-box;
  40. .periTitle{
  41. color: rgba(34, 34, 34, 1);
  42. font-size: 32rpx;
  43. font-weight: 600;
  44. display: flex;
  45. align-items: center;
  46. padding: 0 32rpx;
  47. box-sizing: border-box;
  48. .periType{
  49. display: flex;
  50. align-items: center;
  51. justify-content: center;
  52. width: 92rpx;
  53. height: 48rpx;
  54. background: rgba(3, 101, 249, 0.20);
  55. color: rgba(3, 101, 249, 1);
  56. border-radius: 8rpx;
  57. font-size: 28rpx;
  58. font-weight: 500;
  59. margin-left: 24rpx;
  60. }
  61. }
  62. .periTime{
  63. font-size: 28rpx;
  64. color: rgba(102, 102, 102, 1);
  65. padding: 16rpx 32rpx;
  66. box-sizing: border-box;
  67. }
  68. .periAddress{
  69. display: flex;
  70. justify-content: space-between;
  71. align-items: center;
  72. font-size: 28rpx;
  73. color: rgba(102, 102, 102, 1);
  74. padding: 0 32rpx 32rpx 32rpx;
  75. box-sizing: border-box;
  76. .dhIcon{
  77. width: 36rpx;
  78. height: 36rpx;
  79. padding-left: 20rpx;
  80. border-left: 1px solid #E6E6E6;
  81. }
  82. }
  83. .contactBox{
  84. display: flex;
  85. align-items: center;
  86. justify-content: space-between;
  87. padding:24rpx 32rpx 0 32rpx;
  88. border-top: 1px solid #E6E6E6;
  89. .contackLeft{
  90. display: flex;
  91. align-items: center;
  92. }
  93. .phoneIcon{
  94. width: 64rpx;
  95. height: 64rpx;
  96. }
  97. }
  98. .firstImg{
  99. width: 686rpx;
  100. height: 300rpx;
  101. }
  102. .perInfo{
  103. font-size: 28rpx;
  104. color: rgba(51, 51, 51, 1);
  105. line-height: 50rpx;
  106. margin-top: 24rpx;
  107. }
  108. }
  109. }
  110. </style>