- 小程序自定义导航栏返回键怎么添加一个返回提示框?点击取消停留在页面
<!-- 导航栏 --> <ChildNav style="width: 100%;"> <template v-slot:barContent>人像抠图</template> </ChildNav> <template> <view class="navBarBox"> <!-- 占位 --> <view :style="{ height: statusBarHeight + 'px' }"></view> <view style="height: 82upx;padding: 3upx 50upx;padding-bottom: 8upx;"></view> <!-- 状态栏 --> <view class="fixStyle"> <view :style="{ height: statusBarHeight + 'px' }"></view> <!-- 真正的导航栏内容 --> <view class="navBar"> <image @tap="toback" src="../static/icon/back.png" mode="widthFix"></image> <slot name="barContent"></slot> </view> </view> </view> </template> <script> export default { data() { return { // 状态栏高度 statusBarHeight: 0, } }, created() { this.statusBarHeight = uni.getSystemInfoSync()['statusBarHeight']; }, methods: { toback() { uni.navigateBack(); } } } </script> 上面是自定义导航栏组件的代码 想要实现这样的 [图片]
2022-03-26 - 微信小程序打开摄像头会闪灰屏一秒后才正常是什么问题?
框架类型 问题类型 操作系统 微信版本 基础库版本 小程序 Bug 安卓和iOS 8.0.19 2.22.1 [视频]
2022-03-03