fix:bug修复

This commit is contained in:
黄泽群
2026-07-22 17:18:26 +08:00
parent 53f1ebba18
commit 17ab8beefa
6 changed files with 237 additions and 179 deletions
+1 -7
View File
@@ -46,16 +46,10 @@
methods: {
leftJump() {
const leftPath = this.leftPath;
if(!leftPath){
return;
}
const leftPathType = this.leftPathType;
if(leftPathType === "navigateTo"){
// uni.navigateTo({
// url:leftPath,
// })
uni.navigateBack();
}else if(leftPathType === "switchTab"){
}else if(leftPathType === "switchTab" && leftPath){
uni.switchTab({
url: leftPath,
});