navigateTo增加

This commit is contained in:
Rhett霍 2026-03-16 12:09:15 +08:00
parent f11597f7b6
commit 7c8f107849

View File

@ -700,4 +700,9 @@ export const YuLanfile = async (filePath, returnUrlOnly = false) => {
uni.showToast({ title: '文件加载失败', icon: 'none' });
throw error;
}
}
export const navigateTo = (path) => {
uni.navigateTo({
url: path
})
}