This commit is contained in:
2025-06-23 14:44:05 +08:00
parent 56caa92801
commit 534adf126a
5 changed files with 28 additions and 12 deletions

View File

@@ -34,8 +34,10 @@ export const clearObject = (obj) => {
});
};
export const backPage = () => {
uni.navigateBack().then();
export const backPage = (delta) => {
uni.navigateBack({
delta: delta || 1
}).then();
}
export const copy = (context) => {