2 Star 3 Fork 0

mnkv/uni-x

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.uvue 883 Bytes
一键复制 编辑 原始数据 按行查看 历史
mnkv 提交于 2024-05-21 10:56 . fix: 优化一些已知问题
<script lang="uts">
let firstBackTime = 0
export default {
onLaunch: function () {
},
onShow: function () {
console.log('App Show')
},
onHide: function () {
console.log('App Hide')
},
onLastPageBackPress: function () {
console.log('App LastPageBackPress')
if (firstBackTime == 0) {
uni.showToast({
title: '再按一次退出应用',
position: 'bottom',
})
firstBackTime = Date.now()
setTimeout(() => {
firstBackTime = 0
}, 2000)
} else if (Date.now() - firstBackTime < 2000) {
firstBackTime = Date.now()
uni.exit()
}
},
onExit: function () {
console.log('App Exit')
},
}
</script>
<style lang="scss">
/**
* 默认主题色
*/
$ux-default-color: #007aff;
.ux-default-color {
background-color: $ux-default-color;
}
.ux-default-text-color {
color: $ux-default-color;
}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/hexinkuo/uni-x.git
git@gitee.com:hexinkuo/uni-x.git
hexinkuo
uni-x
uni-x
master

搜索帮助