1***@qq.com
1***@qq.com
  • 发布:2022-09-23 17:28
  • 更新:2022-09-23 17:28
  • 阅读:252

#插件讨论# 【 仿探探左右滑动效果,删除、喜欢 - ldx96 】微信小程序下点击事件无效而且还能滚动

分类:uni-app

微信小程序下点击事件无效,而且还能滚动


<template>  
    <view >  

         <tantan :list="list" @onChange="change"></tantan>  

    </view>  
</template>  

<script>  
    import tantan from '@/components/dgex-tantan/dgex-tantan.vue'  
    export default {  
        components:{  
            tantan,  
            // TanTanSwiper  
        },  
        data() {  
            return {  
                list:[],  

            }  
        },  
        onLoad() {  
            // #ifdef MP-WEIXIN  
            uni.hideHomeButton();  
            uni.hideTabBar();  
            //#endif  

        },  
        mounted() {  
            const arr = []  
            /* 测试数据*/  
            const tu = [  
                'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fimg9.51tietu.net%2Fpic%2F2019-091216%2Fiuh0yifksdgiuh0yifksdg.jpg&refer=http%3A%2F%2Fimg9.51tietu.net&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1662573014&t=8362e1dbd63b5df009e81722daa685e4',  
                'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fpic1.win4000.com%2Fmobile%2F2020-06-19%2F5eec5f30c7a71.jpg&refer=http%3A%2F%2Fpic1.win4000.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1662573014&t=e46c2e2622713d2a5c4d2a325ab1f08d',  
                'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fpic1.win4000.com%2Fmobile%2F2018-08-13%2F5b710018b4eb7.jpg&refer=http%3A%2F%2Fpic1.win4000.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1662573014&t=9e4d320d3767375fba87e9f63565668d',  
                'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fimg9.51tietu.net%2Fpic%2F2019-091206%2Fdst13psrerwdst13psrerw.jpg&refer=http%3A%2F%2Fimg9.51tietu.net&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1662573014&t=40ac6728f2451efed0f0ff34abd20827',  
                'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fpic1.win4000.com%2Fmobile%2F2019-04-22%2F5cbd8defcba7c.jpg&refer=http%3A%2F%2Fpic1.win4000.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1662573024&t=393015cda5a08c0d3fad67cc08e4e5fc'  
            ]  
            for (let index = 0; index < 10; index++) {  
                const n = Math.floor(Math.random() * (tu.length - 1))  
                let data = {  
                    image: tu[n],  
                    title: '你好',  
                    desc: n + 500 + 'm ' + '30分钟前活跃',  
                    tags: ['射手座']  
                }  
                arr.push(data)  
            }  
            this.list = arr  
        },  
        methods: {  
            change(data) {  
                // 判断倒数  
                if (data.currentIndex > this.list.length - 5) {  
                    // 模拟一下数据  
                    const tu = [  
                        'https://nimg.ws.126.net/?url=http%3A%2F%2Fdingyue.ws.126.net%2F2021%2F0704%2Fc7a27a1ej00qvpu700019c000hs00vlc.jpg&thumbnail=660x2147483647&quality=80&type=jpg',  
                        'https://nimg.ws.126.net/?url=http%3A%2F%2Fdingyue.ws.126.net%2F2021%2F0704%2F9f81e6aaj00qvpu70001xc000hs00vmc.jpg&thumbnail=660x2147483647&quality=80&type=jpg',  
                        'https://nimg.ws.126.net/?url=http%3A%2F%2Fdingyue.ws.126.net%2F2021%2F0704%2F55bf2cb3j00qvpu70002cc000hs012jc.jpg&thumbnail=660x2147483647&quality=80&type=jpg',  
                        'https://nimg.ws.126.net/?url=http%3A%2F%2Fdingyue.ws.126.net%2F2021%2F0704%2F2017725bj00qvpu70001jc000hs00zxc.jpg&thumbnail=660x2147483647&quality=80&type=jpg'  
                    ]  
                    for (let index = 0; index < 10; index++) {  
                        const n = Math.floor(Math.random() * (tu.length - 1))  
                        let newdata = {  
                            image: tu[n],  
                            title: '你好',  
                            desc: n + 500 + 'm ' + '30分钟前活跃',  
                            tags: ['射手座']  
                        }  
                        this.list.push(newdata)  
                    }  
                }  
            }  
        }  
    }  
</script>  

<style>  

</style>  
2022-09-23 17:28 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复