合同小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

35 lines
1.1 KiB

let firstBackTime = 0;
const __sfc__ = defineApp({
onLaunch: function () {
console.log('App Launch', " at App.uvue:5");
},
onShow: function () {
console.log('App Show', " at App.uvue:8");
},
onHide: function () {
console.log('App Hide', " at App.uvue:11");
},
onLastPageBackPress: function () {
console.log('App LastPageBackPress', " at App.uvue:15");
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', " at App.uvue:32");
},
});
export default __sfc__;
const GenAppStyles = [utsMapOf([["uni-row", padStyleMapOf(utsMapOf([["flexDirection", "row"]]))], ["uni-column", padStyleMapOf(utsMapOf([["flexDirection", "column"]]))]])];
//# sourceMappingURL=App.uvue.map