useGuidance.vue 2.8 KB

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