<template>
<view class="content">
<view class="item" @click="handleSubmit">
<p>注销登录</p>
<image src="../../../static/images/my_icons/right_arrow.png" />
</view>
</view>
</template>
<script setup>
// 确认按钮
const handleSubmit = async () => {
// 跳转到首页
uni.reLaunch({
url: '/pages/login/index',
})
}
</script>
<style lang="scss" scoped>
.content {
width: 100vw;
height: 100vh;
background: #f8f9fc;
}
.item {
padding: 0 30rpx;
height: 100rpx;
line-height: 100rpx;
background-color: #fff;
margin-bottom: 15rpx;
color: #333;
font-size: 30rpx;
display: flex;
justify-content: space-between;
image {
align-self: center;
width: 30rpx;
height: 40rpx;
}
}
</style>
- 发布:2023-03-30 17:12
- 更新:2023-03-30 17:12
- 阅读:303
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win10 21H2 19044.2728
HBuilderX版本号: 3.7.7
手机系统: Android
手机系统版本号: Android 12
手机厂商: 华为
手机机型: mate20
页面类型: vue
vue版本: vue2
打包方式: 离线
项目创建方式: CLI
CLI版本号: 3.0.0-alpha-3070720230316001
示例代码:
操作步骤:
点击退出登录
点击退出登录
预期结果:
到登录页
到登录页
实际结果:
闪退
闪退
bug描述:
项目cli版本从3.0.0-alpha-3041320220531002 升级到 3.0.0-alpha-3070720230316001,以及 hb3.7.3升级到 hb3.7.7后。
hb运行到模拟器、真机,在触发页面跳转函数(uni.reLaunch )后闪退,100%触发。
估计是基座包导致的,在切换回上一版本 hb3.7.3不会触发
模拟器、真机(小米、华为)都会闪退