fix:rating

This commit is contained in:
zzc
2026-06-08 10:57:20 +08:00
parent 65cef99610
commit 03cb2edf5e
3 changed files with 258 additions and 1 deletions

View File

@@ -63,7 +63,7 @@
<!-- My Creations -->
<view class="section-title">我的xx</view>
<view class="menu-group">
<view class="menu-item" @tap="navTo('avatar')">
<view class="menu-item" @tap="navTo('/pages/mine/topics')">
<view class="icon-box pink-bg"><text></text></view>
<text class="menu-text">我参与的话题</text>
<text class="arrow"></text>
@@ -170,6 +170,13 @@ const navTo = (page) => {
return;
}
if (page === "profile") {
uni.navigateTo({
url: "/pages/mine/profile",
});
return;
}
if (page === "avatar") {
uni.navigateTo({
url: "/pages/mine/avatar",
@@ -194,6 +201,11 @@ const navTo = (page) => {
});
return;
}
if (page === "/pages/mine/topics") {
uni.navigateTo({ url: page });
return;
}
uni.showToast({ title: "功能开发中", icon: "none" });
};
</script>