returnCar.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <template>
  2. <view v-if="isShowReturnCar" class="return-box">
  3. <view class="return-item">
  4. <view class="return-title flex-row flex-between">
  5. <view>还车到门店</view>
  6. <view @tap="closeShowReturnCar" class="close-view"><img style="width: 24rpx;height: 24rpx;" src="https://qiniu.bms16.com/FoWVlo-Nmx6wTDpsL2Rf9_BamU7L" alt=""></view>
  7. </view>
  8. <view class="return-text">系统会根据您的定位判断您是否已到还车位置,如您已经到达门店,请点击「我已到店」按钮,待门店确认还车后,即可还车成功。</view>
  9. <view class="return-btn flex-row">
  10. <view @tap="navStore">导航到店</view>
  11. <view @tap="immediatelyReturn">我已到店</view>
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. };
  21. },
  22. /**
  23. * 组件的属性列表
  24. */
  25. props: {
  26. isShowReturnCar: {
  27. type: Boolean,
  28. default: false
  29. },
  30. },
  31. /**
  32. * 组件的方法列表
  33. */
  34. methods: {
  35. navStore() {
  36. this.$emit('navStoreBtn')
  37. },
  38. immediatelyReturn() {
  39. this.$emit('immediatelyReturnBtn')
  40. },
  41. closeShowReturnCar() {
  42. this.$emit('closeShowReturnCarBtn')
  43. }
  44. }
  45. };
  46. </script>
  47. <style scoped>
  48. .return-box{
  49. position: fixed;
  50. top: 0;
  51. left: 0;
  52. z-index: 10;
  53. width: 100%;
  54. height: 100vh;
  55. background-color: rgba(0, 0, 0, 0.4);
  56. }
  57. .return-item {
  58. border-radius: 32rpx 32rpx 0rpx 0rpx;
  59. background-color: #ffffff;
  60. padding: 40rpx 32rpx 74rpx;
  61. z-index: 100;
  62. position: fixed;
  63. bottom: 0;
  64. width: 100%;
  65. }
  66. .return-title {
  67. font-weight: 600;
  68. font-size: 40rpx;
  69. color: #060809;
  70. font-size: 40rpx;
  71. font-weight: 600;
  72. margin-bottom: 32rpx;
  73. line-height: 40rpx;
  74. }
  75. .return-item img {
  76. width: 32rpx;
  77. height: 32rpx;
  78. vertical-align: middle;
  79. }
  80. .return-text {
  81. color: #2A3A5A;
  82. font-size: 28rpx;
  83. margin-bottom: 64rpx;
  84. width: 100%;
  85. line-height: 52rpx;
  86. }
  87. .return-btn>view:nth-of-type(1) {
  88. background: #EBECEC;
  89. border-radius: 40rpx;
  90. margin-right: 18rpx;
  91. font-weight: 600;
  92. font-size: 32rpx;
  93. color: #060809;
  94. text-align: center;
  95. height: 80rpx;
  96. line-height: 80rpx;
  97. width: 100%;
  98. }
  99. .return-btn>view:nth-of-type(2) {
  100. background: #060809;
  101. border-radius: 40rpx;
  102. font-weight: 600;
  103. font-size: 32rpx;
  104. color: #FFFFFF;
  105. text-align: center;
  106. height: 80rpx;
  107. line-height: 80rpx;
  108. width: 100%;
  109. }
  110. .close-view{
  111. width: 60rpx;
  112. height: 60rpx;
  113. line-height: 60rpx;
  114. background: #F4F5F6;
  115. border-radius: 50%;
  116. text-align: center;
  117. }
  118. </style>