useGuidance.vue 3.3 KB

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