WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2024-05-29 cde19a1c1471c1a4dbe51bd6b0903d6c948c9c26
plugins/infiniteScroll/CInfiniteScroll.vue
@@ -299,17 +299,17 @@
            this.hanldeLoadMore();
        },
        // 刷新加载
        $refresh(autoStart = 'on') {
        $refresh(autoStart) {
            Taro.pageScrollTo({
                selector: '#' + this.elmId,
                scrollTop: 0,
            });
            this.ending = false;
            this.current = 0;
            if (autoStart === 'on') {
                this.hanldeLoadMore();
            } else {
            if (autoStart === 'off') {
                this.inital = false;
            } else {
                this.hanldeLoadMore();
            }
        },
    },