hookehuyr

fix: 修改探索按钮跳转逻辑和显示原始时间戳

暂时将探索按钮重定向到司总个人页而非首页
移除时间格式化直接显示原始时间戳
......@@ -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"
......
......@@ -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')
......