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

39 lines
773 B

  1. <template>
  2. <view class="home">
  3. <view class="content" style="padding-top: 30vh;">
  4. <span>欢迎</span>
  5. <span style="font-size: 80rpx; margin: 20rpx 0;">Christine</span>
  6. <view class="flex-col" style="gap: 5rpx; margin-top: 40rpx;">
  7. <span>来到百富门的世界</span>
  8. <span>品味传承与创新交织的威士忌艺术</span>
  9. <span>开启您的专属品鉴之旅</span>
  10. </view>
  11. <view style="margin-top: 6vh;" @click="query">
  12. <view class="btn2">
  13. 点击进入
  14. </view>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. }
  24. },
  25. methods: {
  26. query(){
  27. uni.navigateTo({
  28. url: '/pages_order/info/infoPages'
  29. })
  30. }
  31. }
  32. }
  33. </script>
  34. <style lang="scss" scoped>
  35. </style>