dianying.vue 1010 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <view>
  3. <swiper class="swiper-box" :current="current" autoplay circular>
  4. <swiper-item>
  5. <image class="image" src="http://image.jppt.com.cn/zzjs/2021-04-09/others/1617954376809.jpg" mode="aspectFill"
  6. :draggable="false" @click="goMiniApp({appletAddress:'wxb47185e82704dda8'})" />
  7. </swiper-item>
  8. <swiper-item>
  9. <image class="image" src="http://image.jppt.com.cn/zzjs/2021-04-12/others/1618190238218.jpg"
  10. mode="aspectFill" :draggable="false" @click="goUrl('/pages/webview/webview')" />
  11. </swiper-item>
  12. <swiper-item>
  13. <image class="image" src="http://image.jppt.com.cn/zzjs/2021-04-12/others/1618190251643.jpg"
  14. mode="aspectFill" :draggable="false" @click="goUrl('/pages/webview/webview')" />
  15. </swiper-item>
  16. </swiper>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. }
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. .swiper-box {
  31. height: 622rpx;
  32. .image {
  33. width: 100%;
  34. height: 100%;
  35. }
  36. }
  37. </style>