reservationFeedback.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <template>
  2. <view>
  3. <ujp-navbar title="预约反馈" ></ujp-navbar>
  4. <view class="background">
  5. <view class="img-box">
  6. <image class="img" src="@/assets/img/success2@3x.png" mode=""></image>
  7. </view>
  8. <view class="text">
  9. 恭喜您,预约成功!
  10. </view>
  11. <view class="main">
  12. <p class="title">尊敬的用户:</p>
  13. <p>您预约的“<text class="emphasis">凭话费领年卡</text>”活动已通过,
  14. 平台定于<text class="emphasis underline">2024年3月4日</text>(下周一)
  15. 至<text class="emphasis underline">2024年3月8日</text>(下周五)集中办理,
  16. 请携带个人<text class="red" >身份证</text>、<text class="red">车辆行驶证</text>前往<text class="emphasis underline">荆鹏软件园一楼</text>柜台办理。</p>
  17. <view class="map">
  18. <image class="map-img" src="../../assets/img/map@3x.png" mode=""></image>
  19. </view>
  20. <view class="hint">
  21. 点击查看地图导航
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. }
  32. },
  33. methods: {
  34. }
  35. }
  36. </script>
  37. <style lang="scss" scoped>
  38. .background{
  39. height: 360px;
  40. background: linear-gradient(180deg, rgba(0,185,98,1) 41%,rgba(0,185,98,0) 100%);
  41. position: relative;
  42. .img-box{
  43. text-align: center;
  44. .img{
  45. width: 144rpx;
  46. height: 144rpx;
  47. margin: 56rpx 0 8rpx;
  48. }
  49. }
  50. .text{
  51. color: rgba(255, 255, 255, 1);
  52. font-size: 40rpx;
  53. font-weight: bold;
  54. text-align: center;
  55. }
  56. .main{
  57. border-radius: 16px;
  58. background: linear-gradient(180deg, rgba(218,251,235,1) 0%,rgba(255,255,255,1) 8%);
  59. border: 1px solid rgba(255, 255, 255, 1);
  60. padding: 40rpx;
  61. position: absolute;
  62. top:320rpx;
  63. left:48rpx;
  64. right: 48rpx;
  65. color: rgba(51, 51, 51, 1);
  66. font-size: 32rpx;
  67. line-height: 64rpx;
  68. text-align: justify;
  69. .title{
  70. font-weight: bold;
  71. margin-bottom: 32rpx;
  72. }
  73. .emphasis{
  74. display: inline-block;
  75. font-weight: bold;
  76. }
  77. .underline{
  78. text-decoration: underline;
  79. }
  80. .red{
  81. display: inline-block;
  82. font-weight: bold;
  83. text-decoration: underline;
  84. color: #FF6923 ;
  85. }
  86. .map-img{
  87. width: 574rpx;
  88. height: 200rpx;
  89. margin-top: 40rpx;
  90. }
  91. .hint{
  92. color: rgba(153, 153, 153, 1);
  93. font-size: 24rpx;
  94. text-align: center;
  95. }
  96. }
  97. }
  98. </style>