index.vue 776 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <page-theme :theme="theme">
  3. <template>
  4. <u-swiper :list="list1" @click="click"></u-swiper>
  5. <view class="f-30 p-40 flex-dir-column flex-x-center">
  6. <view class="col-info-d t-c m-b-30">其他内容展示</view>
  7. </view>
  8. </template>
  9. </page-theme>
  10. </template>
  11. <script>
  12. import themeMixins from '@/pages/yuecai/mixins/themeMixins.js';
  13. export default {
  14. mixins: [themeMixins],
  15. data() {
  16. return {
  17. list1: [
  18. 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
  19. 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
  20. 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
  21. ]
  22. }
  23. },
  24. methods: {
  25. },
  26. onLoad(options) {},
  27. }
  28. </script>
  29. <style scoped lang="scss">
  30. </style>