- - {{ item.score }} + + {{ displayScore }} - {{ item.status }} - {{ item.updatedAt }} + {{ displayFormattedDate }} {{ item.title }} - {{ item.subtitle }} - - {{ item.sheetName }} - {{ item.accountName }} - {{ item.owner }} + {{ item.originalName }} + + + + 🎬 {{ item.directors }} + + 🎭 {{ item.casts }} + + + + + + 📝 查看详情 + + + - {{ tag }} + {{ tag }} + + + + + + + + {{ item.title }} - 详情 + ✕ + + + + + 📖 简介 + {{ item.description }} + + + 🎬 导演 + {{ item.directors }} + + + 🎭 主演 + {{ item.casts }} + + + 🏷️ 标签 + + {{ tag }} + + + + ⭐ 评分 + {{ displayScore }} + + + 📂 分类 + {{ item.category }} + + + 📌 状态 + {{ displayStatus }} + + + + + + + \ No newline at end of file diff --git a/vue/src/components/SettingsView.vue b/vue/src/components/SettingsView.vue index b698d37..324284b 100644 --- a/vue/src/components/SettingsView.vue +++ b/vue/src/components/SettingsView.vue @@ -121,8 +121,28 @@ {{ boundInfo.username }} - 绑定时间: - {{ boundInfo.boundAt }} + 存储ID: + {{ boundInfo.storageId || '-' }} + + + 挂载路径: + {{ boundInfo.mountPath || '-' }} + + + 状态: + {{ boundInfo.status === 'active' ? '正常' : (boundInfo.status || '-') }} + + + Token有效: + {{ boundInfo.tokenValid ? '✅ 是' : '❌ 否' }} + + + 创建时间: + {{ formatTime(boundInfo.createTime) }} + + + 更新时间: + {{ formatTime(boundInfo.updateTime) }}