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

149 lines
2.7 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 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. 恭贺您荣膺 {{ titleBy.title }} 品味桂冠!
  20. <br />
  21. 我们大中华区首席品牌大使将从典藏酒窖中为您量身精选四款单桶臻酿
  22. <br />
  23. 每款臻酿的风味密码如年轮岩纹各有千秋变换
  24. <br />
  25. 品牌大使将登门拜访
  26. <br />
  27. 至您的私享领地带您领略桶陈独特风味的奥秘:
  28. <br />
  29. 品鉴大师私授的醒酒秘技
  30. <br />
  31. 解锁酒液黄金曲线的陈年密码
  32. <br />
  33. 聆听每滴臻酿背后的风土传奇
  34. <br />
  35. 溯源酒厂背后不为人知的故事
  36. </view>
  37. </view>
  38. <view class="btn-list">
  39. <view class="next-btn-2"
  40. @click="next">
  41. 点击预约
  42. </view>
  43. <view class="next-btn"
  44. @click="rep">
  45. 返回
  46. </view>
  47. </view>
  48. </view>
  49. </template>
  50. <script>
  51. import { mapState } from 'vuex'
  52. export default {
  53. data() {
  54. return {
  55. }
  56. },
  57. onLoad() {
  58. },
  59. computed : {
  60. ...mapState(['titleBy']),
  61. },
  62. methods: {
  63. rep(){
  64. uni.navigateBack(-1)
  65. // uni.reLaunch({
  66. // url: '/pages/index/agreement'
  67. // })
  68. // uni.navigateTo({
  69. // url: '/pages/index/end'
  70. // })
  71. },
  72. next(){
  73. uni.navigateTo({
  74. url: '/pages_order/info/appoint'
  75. })
  76. },
  77. }
  78. }
  79. </script>
  80. <style scoped lang="scss">
  81. .page{
  82. .logo{
  83. width: 600rpx;
  84. margin: 150rpx 75rpx;
  85. }
  86. .service{
  87. display: flex;
  88. flex-direction: column;
  89. align-items: center;
  90. .img_2{
  91. margin: 0 auto;
  92. width: 100rpx;
  93. }
  94. .title{
  95. font-weight: 900;
  96. margin: 20rpx 0;
  97. font-size: 28rpx;
  98. }
  99. .stext{
  100. width: 620rpx;
  101. margin-bottom: 70rpx;
  102. line-height: 45rpx;
  103. font-size: 24rpx;
  104. color: #777;
  105. text-align: center;
  106. }
  107. }
  108. .btn-list{
  109. display: flex;
  110. flex-direction: column;
  111. gap: 40rpx;
  112. width: 100%;
  113. justify-content: center;
  114. align-items: center;
  115. padding-bottom: 300rpx;
  116. }
  117. .next-btn{
  118. width: 400rpx;
  119. display: flex;
  120. align-items: center;
  121. justify-content: center;
  122. color: white;
  123. padding: 22rpx 90rpx;
  124. background-color: $uni-color;
  125. border-radius: 40rpx;
  126. }
  127. .next-btn-2{
  128. width: 400rpx;
  129. display: flex;
  130. align-items: center;
  131. justify-content: center;
  132. color: white;
  133. padding: 22rpx 90rpx;
  134. background-color: $uni-color-primary;
  135. border-radius: 40rpx;
  136. }
  137. }
  138. </style>