useGuidance.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <template>
  2. <view class="tip-view">
  3. <view class="tip-title-view flex-row align-center">
  4. <image style="width: 144rpx;height: 40rpx;" src="https://qiniu.bms16.com/FjUW1kuRvXWTEftyn9nH1AbGWuxK"
  5. mode='aspectFill'></image>
  6. <image style="width: 86rpx;height: 80rpx;" src="https://qiniu.bms16.com/FibAaPERzqi6m95EP2jREUKixjUi"
  7. mode='aspectFill'></image>
  8. <view class="w-bg flex-row"></view>
  9. </view>
  10. <view class="step-view flex-row align-center">
  11. <view class="icon-list-view">
  12. <image class="img" src="https://qiniu.bms16.com/Fp0BE27Q0VTD8qUJRHUVhWO6VEbO" mode='aspectFill'></image>
  13. </view>
  14. <view class="dashed-line"></view>
  15. <view class="icon-list-view">
  16. <image style="width: 80rpx;height: 72rpx;" src="https://qiniu.bms16.com/FqDzYwAbnSEgf3yv9SAb92Vq4ZEB"
  17. mode='aspectFill'></image>
  18. </view>
  19. <view class="dashed-line"></view>
  20. <view class="icon-list-view">
  21. <image style="width: 80rpx;height: 72rpx;" src="https://qiniu.bms16.com/FlFMHzco6j9XOpMI21tSnR9500Un"
  22. mode='aspectFill'></image>
  23. </view>
  24. </view>
  25. <view class="step-tip-view flex-row align-center">
  26. <view class="step-tip-text">
  27. <image class="step-num-1" src="https://qiniu.bms16.com/Fm4gMRmW6UOwLcU-eW8LDLNfiUJe" mode='aspectFill'>
  28. </image>线上选择用车方案生成待支付订单
  29. </view>
  30. <view class="step-tip-text">
  31. <image class="step-num-2" src="https://qiniu.bms16.com/FvYN7SxOYIhXEqSAJZrQIBQuTx79" mode='aspectFill'>
  32. </image>导航到店向商家支付订单金额
  33. </view>
  34. <view class="step-tip-text">
  35. <image class="step-num-3" src="https://qiniu.bms16.com/FhZ7w0X8iVuxFPdetEF9C3YYkJ7Z" mode='aspectFill'>
  36. </image>支付完成后直接现场取车
  37. </view>
  38. </view>
  39. </view>
  40. </template>
  41. <script>
  42. export default {
  43. data() {
  44. return {};
  45. },
  46. /**
  47. * 组件的属性列表
  48. */
  49. props: {},
  50. /**
  51. * 组件的方法列表
  52. */
  53. methods: {}
  54. };
  55. </script>
  56. <style scoped>
  57. .tip-view {
  58. background: #0A59F7;
  59. border-radius: 50rpx;
  60. margin-bottom: 20rpx;
  61. /* height: 80rpx; */
  62. }
  63. .tip-title-view {
  64. padding-left: 24rpx;
  65. /* border-radius: 40rpx; */
  66. }
  67. .w-bg {
  68. width: 100%;
  69. height: 80rpx;
  70. background: #FFFFFF;
  71. border-radius: 0rpx 40rpx 0rpx 0rpx;
  72. }
  73. .step-view {
  74. justify-content: space-around;
  75. background: #FFFFFF;
  76. padding: 32rpx 80rpx 0;
  77. border-top-left-radius: 32rpx;
  78. }
  79. .icon-list-view .img {
  80. width: 80rpx;
  81. height: 72rpx;
  82. }
  83. .dashed-line {
  84. /* border: 3rpx solid #F1F3F4; */
  85. border-style: dashed;
  86. border-width: 3rpx;
  87. /* 定义边框粗细 */
  88. border-color: #F1F3F4;
  89. /* 定义边框颜色 */
  90. width: 136rpx;
  91. height: 2rpx;
  92. display: flex;
  93. flex-grow: 1;
  94. padding: 0 80rpx;
  95. }
  96. .step-tip-view {
  97. justify-content: space-around;
  98. background-color: #FFF;
  99. padding: 22rpx 24rpx 40rpx;
  100. border-radius: 0rpx 0rpx 40rpx 40rpx;
  101. }
  102. .step-tip-text {
  103. font-weight: 400;
  104. font-size: 24rpx;
  105. color: #060809;
  106. opacity: 0.8;
  107. }
  108. .step-tip-text:nth-child(2) {
  109. margin: 0 38rpx 0 40rpx;
  110. }
  111. .step-num-1 {
  112. width: 14rpx;
  113. height: 22rpx;
  114. margin-right: 4rpx;
  115. }
  116. .step-num-2 {
  117. width: 20rpx;
  118. height: 22rpx;
  119. margin-right: 4rpx;
  120. }
  121. .step-num-3 {
  122. width: 20rpx;
  123. height: 24rpx;
  124. margin-right: 4rpx;
  125. }
  126. </style>