index.vue 771 B

12345678910111213141516171819202122232425262728293031
  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. onLoad(options) {},
  26. }
  27. </script>
  28. <style scoped lang="scss">
  29. </style>