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

54 lines
1.2 KiB

6 months ago
6 months ago
6 months ago
6 months ago
  1. <template>
  2. <view class="home">
  3. <image src="/static/image/bg/2.png"
  4. class="page-bg"
  5. mode=""></image>
  6. <view class="swipe" style="padding-top: 320rpx;">
  7. <uv-swiper :list="list"
  8. height="300rpx"></uv-swiper>
  9. </view>
  10. <view class="content" style="padding-top: 40rpx;
  11. background-color: #fff;">
  12. <text>欢迎</text>
  13. <text style="font-size: 80rpx; margin: 20rpx 0;">Christine</text>
  14. <view class="flex-col" style="gap: 5rpx; margin-top: 40rpx;">
  15. <text>来到百富门的世界</text>
  16. <text>品味传承与创新交织的威士忌艺术</text>
  17. <text>开启您的专属品鉴之旅</text>
  18. </view>
  19. <view style="margin-top: 40rpx;" @click="query">
  20. <view class="btn2">
  21. 点击进入
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. list: [
  32. 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
  33. 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
  34. 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
  35. ],
  36. }
  37. },
  38. methods: {
  39. query(){
  40. uni.navigateTo({
  41. url: '/pages_order/info/infoPages'
  42. })
  43. }
  44. }
  45. }
  46. </script>
  47. <style lang="scss" scoped>
  48. </style>