WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2023-12-02 c0f7df134cb34328a240be1f792c85cda7250f6c
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();
            }
        },
    },