returnCar.vue 2.7 KB

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