百富门答题小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

129 lines
2.1 KiB

4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
3 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
3 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
  1. <template>
  2. <view class="page">
  3. <image :src="configList.img_13"
  4. class="page-bg"
  5. mode="aspectFill"></image>
  6. <image :src="configList.img_7"
  7. class="logo"
  8. mode="widthFix"></image>
  9. <view class="service">
  10. <image :src="configList.img_2"
  11. class="img_2"
  12. mode="widthFix"></image>
  13. <view class="title">
  14. 专属品鉴服务
  15. </view>
  16. <view class="stext">
  17. 根据您的称号我们为您匹配了专属的单桶品鉴组合,
  18. <br />
  19. 并且为您提供一次专属上门品鉴服务,
  20. <br />
  21. 您可以点击下方按钮进行预约
  22. </view>
  23. </view>
  24. <view class="btn-list">
  25. <view class="next-btn-2"
  26. @click="next">
  27. 点击预约
  28. </view>
  29. <view class="next-btn"
  30. @click="rep">
  31. 返回
  32. </view>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. export default {
  38. data() {
  39. return {
  40. }
  41. },
  42. onLoad() {
  43. },
  44. methods: {
  45. rep(){
  46. uni.navigateBack(-1)
  47. // uni.reLaunch({
  48. // url: '/pages/index/agreement'
  49. // })
  50. // uni.navigateTo({
  51. // url: '/pages/index/end'
  52. // })
  53. },
  54. next(){
  55. uni.navigateTo({
  56. url: '/pages_order/info/appoint'
  57. })
  58. },
  59. }
  60. }
  61. </script>
  62. <style scoped lang="scss">
  63. .page{
  64. .logo{
  65. width: 600rpx;
  66. margin: 150rpx 75rpx;
  67. }
  68. .service{
  69. display: flex;
  70. flex-direction: column;
  71. align-items: center;
  72. .img_2{
  73. margin: 0 auto;
  74. width: 100rpx;
  75. }
  76. .title{
  77. font-weight: 900;
  78. margin: 30rpx 0;
  79. }
  80. .stext{
  81. width: 600rpx;
  82. margin-bottom: 150rpx;
  83. line-height: 50rpx;
  84. font-size: 26rpx;
  85. color: #777;
  86. text-align: center;
  87. }
  88. }
  89. .btn-list{
  90. display: flex;
  91. flex-direction: column;
  92. gap: 40rpx;
  93. width: 100%;
  94. justify-content: center;
  95. align-items: center;
  96. }
  97. .next-btn{
  98. width: 400rpx;
  99. display: flex;
  100. align-items: center;
  101. justify-content: center;
  102. color: white;
  103. padding: 22rpx 90rpx;
  104. background-color: $uni-color;
  105. border-radius: 40rpx;
  106. }
  107. .next-btn-2{
  108. width: 400rpx;
  109. display: flex;
  110. align-items: center;
  111. justify-content: center;
  112. color: white;
  113. padding: 22rpx 90rpx;
  114. background-color: $uni-color-primary;
  115. border-radius: 40rpx;
  116. }
  117. }
  118. </style>