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-30 15:56:54 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
59d810f8ce2628179155fe890eddf43a6dd14d84
59d810f8
1 parent
3323d293
fix: 修改探索按钮跳转逻辑和显示原始时间戳
暂时将探索按钮重定向到司总个人页而非首页 移除时间格式化直接显示原始时间戳
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
src/views/profile/pointsPage.vue
src/views/recall/PointsPage.vue
src/views/profile/pointsPage.vue
View file @
59d810f
...
...
@@ -82,7 +82,7 @@
</div>
<div class="flex justify-between items-center">
<div class="flex flex-col">
<span class="text-gray-400 text-xs mb-1">{{
formatTime(item.event_time)
}}</span>
<span class="text-gray-400 text-xs mb-1">{{
item.event_time
}}</span>
<span class="text-gray-400 text-xs">{{ item.event_type_desc }}</span>
</div>
<div class="text-lg font-bold"
...
...
src/views/recall/PointsPage.vue
View file @
59d810f
...
...
@@ -141,7 +141,9 @@ const harvestMethods = [
const handleExplore = () => {
// 路由跳转逻辑
router.push('/')
// router.push('/')
// TODO: 暂时重定向到司总个人页
location.href = 'https://wxm.behalo.cc/pages/tabBar/mine/mine'
// 收集成功后删除缓存
localStorage.removeItem('cached_user_info')
...
...
Please
register
or
login
to post a comment