diff --git a/pages/component/list-view/list-view.uvue b/pages/component/list-view/list-view.uvue index 5777db59f70ab904b6da818d8867ec9fbbbe8100..703f84e80431a323a365a2ee36a71090c55367e1 100644 --- a/pages/component/list-view/list-view.uvue +++ b/pages/component/list-view/list-view.uvue @@ -42,8 +42,8 @@ }, list_view_refresherrestore() { console.log("自定义下拉刷新被复位") }, list_view_refresherabort() { console.log("自定义下拉刷新被中止") }, - list_view_scrolltoupper() { console.log("滚动到顶部/左边,会触发 scrolltoupper 事件") }, - list_view_scrolltolower() { console.log("滚动到底部/右边,会触发 scrolltolower 事件") }, + list_view_scrolltoupper(e:ScrollToUpperEvent) { console.log("滚动到顶部/左边,会触发 scrolltoupper 事件 direction="+e.detail.direction) }, + list_view_scrolltolower(e:ScrollToLowerEvent) { console.log("滚动到底部/右边,会触发 scrolltolower 事件 direction="+e.detail.direction) }, list_view_scroll() { console.log("滚动时触发,event.detail = {scrollLeft, scrollTop, scrollHeight, scrollWidth, deltaX, deltaY}") }, list_item_click() { console.log("list-item组件被点击时触发") }, list_item_touchstart() { console.log("手指触摸list-item组件动作开始") },