景徳镇旅游微信小程序
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.

53 lines
860 B

8 months ago
  1. <template>
  2. <view class="page">
  3. <PrivacyAgreementPoup/>
  4. <tabber select="0"/>
  5. </view>
  6. </template>
  7. <script>
  8. import PrivacyAgreementPoup from '@/components/config/PrivacyAgreementPoup.vue'
  9. import tabber from '@/components/base/tabbar.vue'
  10. import { mapGetters } from 'vuex'
  11. export default {
  12. components : {
  13. tabber,
  14. PrivacyAgreementPoup,
  15. },
  16. data() {
  17. return {
  18. queryParams: {
  19. pageNo: 1,
  20. pageSize: 10,
  21. title: ''
  22. },
  23. bannerList: [
  24. {
  25. url: 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
  26. },
  27. {
  28. url: 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
  29. },
  30. {
  31. url: 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
  32. },
  33. ],
  34. productList: [],
  35. }
  36. },
  37. computed : {
  38. },
  39. methods: {
  40. }
  41. }
  42. </script>
  43. <style scoped lang="scss">
  44. .page{
  45. }
  46. </style>