1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <view>
- <swiper class="swiper-box" :current="current" autoplay circular>
- <swiper-item>
- <image class="image" src="http://image.jppt.com.cn/zzjs/2021-04-09/others/1617954376809.jpg" mode="aspectFill"
- :draggable="false" @click="goMiniApp({appletAddress:'wxb47185e82704dda8'})" />
- </swiper-item>
- <swiper-item>
- <image class="image" src="http://image.jppt.com.cn/zzjs/2021-04-12/others/1618190238218.jpg"
- mode="aspectFill" :draggable="false" @click="goUrl('/pages/webview/webview')" />
- </swiper-item>
- <swiper-item>
- <image class="image" src="http://image.jppt.com.cn/zzjs/2021-04-12/others/1618190251643.jpg"
- mode="aspectFill" :draggable="false" @click="goUrl('/pages/webview/webview')" />
- </swiper-item>
- </swiper>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .swiper-box {
- height: 622rpx;
- .image {
- width: 100%;
- height: 100%;
- }
- }
- </style>
|