Files

14 lines
241 B
JavaScript
Raw Permalink Normal View History

2026-02-10 08:05:03 +08:00
export function goBackOrGoHome(home = '/pages/home/home') {
const pages = getCurrentPages();
if (pages.length > 1) {
uni.navigateBack();
} else {
uni.navigateTo({
url: home,
});
}
}
export default goBackOrGoHome;