feat: add unified asset retry endpoint
Some checks failed
Build and Push Docker Images / changes (push) Has been cancelled
Build and Push Docker Images / build-backend (push) Has been cancelled
Build and Push Docker Images / build-frontend (push) Has been cancelled
Build and Push Docker Images / build-admin-frontend (push) Has been cancelled

This commit is contained in:
2026-04-18 11:40:10 +08:00
parent b8d3cb4644
commit 0613238a37
9 changed files with 316 additions and 91 deletions

View File

@@ -1,19 +1,16 @@
<script setup lang="ts">
import { computed, onMounted, ref, watch } from 'vue'
import { ref } from 'vue'
import { useRouter } from 'vue-router'
import { useI18n } from 'vue-i18n'
import { useUserStore } from '../stores/user'
import { api } from '../api/client'
import BaseButton from '../components/ui/BaseButton.vue'
import LoginDialog from '../components/ui/LoginDialog.vue'
import {
SparklesIcon,
ArrowRightIcon,
ArrowRightOnRectangleIcon,
UserGroupIcon
} from '@heroicons/vue/24/outline'
const { t, locale } = useI18n()
const { locale } = useI18n()
const router = useRouter()
const userStore = useUserStore()
@@ -43,11 +40,6 @@ function scrollToFeatures() {
document.getElementById('features')?.scrollIntoView({ behavior: 'smooth' })
}
// ========== 统计数据 (静态模拟) ==========
const storiesCount = 10000
const familiesCount = 5000
const satisfactionCount = 99
</script>
<template>