百富门答题小程序
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.

124 lines
2.1 KiB

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
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
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. </view>
  19. </view>
  20. <view class="btn-list">
  21. <view class="next-btn-2"
  22. @click="next">
  23. 点击预约
  24. </view>
  25. <view class="next-btn"
  26. @click="rep">
  27. 返回
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. data() {
  35. return {
  36. }
  37. },
  38. onLoad() {
  39. },
  40. methods: {
  41. rep(){
  42. uni.navigateBack(-1)
  43. // uni.reLaunch({
  44. // url: '/pages/index/agreement'
  45. // })
  46. // uni.navigateTo({
  47. // url: '/pages/index/end'
  48. // })
  49. },
  50. next(){
  51. uni.navigateTo({
  52. url: '/pages_order/info/appoint'
  53. })
  54. },
  55. }
  56. }
  57. </script>
  58. <style scoped lang="scss">
  59. .page{
  60. .logo{
  61. width: 600rpx;
  62. margin: 150rpx 75rpx;
  63. }
  64. .service{
  65. display: flex;
  66. flex-direction: column;
  67. align-items: center;
  68. .img_2{
  69. margin: 0 auto;
  70. width: 100rpx;
  71. }
  72. .title{
  73. font-weight: 900;
  74. margin: 30rpx 0;
  75. }
  76. .stext{
  77. width: 600rpx;
  78. margin-bottom: 150rpx;
  79. line-height: 50rpx;
  80. font-size: 26rpx;
  81. color: #777;
  82. }
  83. }
  84. .btn-list{
  85. display: flex;
  86. flex-direction: column;
  87. gap: 40rpx;
  88. width: 100%;
  89. justify-content: center;
  90. align-items: center;
  91. }
  92. .next-btn{
  93. width: 400rpx;
  94. display: flex;
  95. align-items: center;
  96. justify-content: center;
  97. color: white;
  98. padding: 22rpx 90rpx;
  99. background-color: $uni-color;
  100. border-radius: 40rpx;
  101. }
  102. .next-btn-2{
  103. width: 400rpx;
  104. display: flex;
  105. align-items: center;
  106. justify-content: center;
  107. color: white;
  108. padding: 22rpx 90rpx;
  109. background-color: $uni-color-primary;
  110. border-radius: 40rpx;
  111. }
  112. }
  113. </style>