diff --git a/pages/index.vue b/pages/index.vue index 46c758c..77a9c65 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -29,28 +29,52 @@ - - - - - 总设备 - - - - - 在线设备 - - - - - 离线设备 - - - - - 土壤墒情 - - + + + + + + 总设备 + + + + + 在线设备 + + + + + 离线设备 + + + + + 土壤墒情 + + + + + 总设备 + + + + + 总设备 + + + + + 总设备 + + + + + 总设备 + + + + + @@ -343,6 +367,7 @@ export default { data() { return { + isSticky: false, show: false, landList: [1, 2, 3], value: false, @@ -357,6 +382,15 @@ plus.navigator.setFullscreen(false); // #endif }, + onPageScroll(e) { + // 页面滚动触发事件的处理函数 + // console.log(e.scrollTop); // 输出滚动位置的垂直距离 + if (e.scrollTop >= 100) { + this.isSticky = true; + } else { + this.isSticky = false; + } + }, methods: { ceshi(e) { console.error("ceshi:", e);