uview-plus组件库全面升级更新,订单结算判断支付方式是否可用代码调整,公众号关注二维码修改

This commit is contained in:
2025-10-21 10:44:31 +08:00
parent 5d98b7efc2
commit 5f3a307fec
395 changed files with 31264 additions and 2477 deletions

View File

@@ -1,10 +1,10 @@
<template>
<view
class="u-sticky"
:id="elId"
:style="[style]"
>
<view
:id="elId"
:style="[stickyContent]"
class="u-sticky__content"
>
@@ -90,6 +90,11 @@
mounted() {
this.init()
},
watch: {
offsetTop(nval) {
this.getStickyTop()
}
},
methods: {
init() {
this.getStickyTop()
@@ -114,7 +119,7 @@
observeContent() {
// 先断掉之前的观察
this.disconnectObserver('contentObserver')
const contentObserver = uni.createIntersectionObserver({
const contentObserver = uni.createIntersectionObserver(this,{
// 检测的区间范围
thresholds: [0.95, 0.98, 1]
})