diff --git a/frontend/src/views/Interactions.vue b/frontend/src/views/Interactions.vue
index 52075b4..9f2bf62 100644
--- a/frontend/src/views/Interactions.vue
+++ b/frontend/src/views/Interactions.vue
@@ -30,7 +30,16 @@
- {{ row.article_title || '--' }}
+
+ {{ row.article_title || row.article_id }}
+
+ {{ row.article_title || '--' }}
@@ -55,7 +64,7 @@
- {{ row.executed_at ? new Date(row.executed_at).toLocaleString('zh-CN',{timeZone:'Asia/Shanghai',hour12:false}) : '-' }}
+ {{ row.executed_at ? row.executed_at.replace('T',' ').replace('+08:00','').replace('+00:00','') : '-' }}
@@ -104,6 +113,11 @@ function onDateChange(v) {
load()
}
+// 构造文章详情页 URL
+function getArticleUrl(articleId) {
+ return `https://fat-open.99hui.com/api/huihuibusiness/news/open/${articleId}`
+}
+
async function load() {
loading.value = true
try {