Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
mlaj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-12-01 16:16:54 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5dca7d87a70abd7058d0cd1680b4d961b6f91443
5dca7d87
1 parent
c83aeb60
fix: 更新活动页面跳转链接并移除开发环境域名
更新底部导航和个人资料页的活动页面跳转链接,统一使用生产环境域名 移除个人资料页中已注释的作业管理菜单项
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
src/components/layout/BottomNav.vue
src/views/profile/ProfilePage.vue
src/components/layout/BottomNav.vue
View file @
5dca7d8
<!--
* @Date: 2025-03-20 20:36:36
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-
06-13 14:53:20
* @LastEditTime: 2025-
12-01 16:14:16
* @FilePath: /mlaj/src/components/layout/BottomNav.vue
* @Description: 文件描述
-->
...
...
@@ -77,7 +77,8 @@ const isActive = (path) => {
const handleNavClick = (item) => {
if (item.path === '/activity') {
// showToast('功能暂未开放')
window.open('https://wxm.behalo.cc/pages/activity/activity', '_blank')
// TODO: 活动页面跳转
window.open('https://wxm.behalo.cc/pages/activity/activity?token=&user_id=', '_blank')
return
}
if (item.path === '/profile' && !currentUser.value) {
...
...
src/views/profile/ProfilePage.vue
View file @
5dca7d8
...
...
@@ -196,10 +196,10 @@ const handleMenuClick = (path) => {
showToast('功能暂未开放')
} else if(path === '/profile/activities') {
// showToast('功能暂未开放')
window.location.href = 'https://wxm
-dev.behalo.cc/pages/activity/activity?token=&user_id=
';
window.location.href = 'https://wxm
.behalo.cc/pages/tabBar/mine/application?type=2
';
} else if(path === '/profile/userinfo') {
// showToast('功能暂未开放')
window.location.href = 'https://wxm
-dev
.behalo.cc/pages/student/student?token=&user_id=';
window.location.href = 'https://wxm.behalo.cc/pages/student/student?token=&user_id=';
} else {
router.push(path);
}
...
...
@@ -319,6 +319,11 @@ const menuItems4 = ref([
title: "我的班级",
path: "/teacher/myClass",
},
// {
// icon: "book",
// title: "作业管理",
// path: "/teacher/tasks",
// },
]);
const handleCheckin = () => {
...
...
Please
register
or
login
to post a comment