fix: 修改探索按钮跳转逻辑和显示原始时间戳
暂时将探索按钮重定向到司总个人页而非首页 移除时间格式化直接显示原始时间戳
Showing
2 changed files
with
4 additions
and
2 deletions
| ... | @@ -82,7 +82,7 @@ | ... | @@ -82,7 +82,7 @@ |
| 82 | </div> | 82 | </div> |
| 83 | <div class="flex justify-between items-center"> | 83 | <div class="flex justify-between items-center"> |
| 84 | <div class="flex flex-col"> | 84 | <div class="flex flex-col"> |
| 85 | - <span class="text-gray-400 text-xs mb-1">{{ formatTime(item.event_time) }}</span> | 85 | + <span class="text-gray-400 text-xs mb-1">{{ item.event_time }}</span> |
| 86 | <span class="text-gray-400 text-xs">{{ item.event_type_desc }}</span> | 86 | <span class="text-gray-400 text-xs">{{ item.event_type_desc }}</span> |
| 87 | </div> | 87 | </div> |
| 88 | <div class="text-lg font-bold" | 88 | <div class="text-lg font-bold" | ... | ... |
| ... | @@ -141,7 +141,9 @@ const harvestMethods = [ | ... | @@ -141,7 +141,9 @@ const harvestMethods = [ |
| 141 | 141 | ||
| 142 | const handleExplore = () => { | 142 | const handleExplore = () => { |
| 143 | // 路由跳转逻辑 | 143 | // 路由跳转逻辑 |
| 144 | - router.push('/') | 144 | + // router.push('/') |
| 145 | + // TODO: 暂时重定向到司总个人页 | ||
| 146 | + location.href = 'https://wxm.behalo.cc/pages/tabBar/mine/mine' | ||
| 145 | 147 | ||
| 146 | // 收集成功后删除缓存 | 148 | // 收集成功后删除缓存 |
| 147 | localStorage.removeItem('cached_user_info') | 149 | localStorage.removeItem('cached_user_info') | ... | ... |
-
Please register or login to post a comment