feat: 更新依赖版本,优化路由组件,重构文件预览和订单面板,添加市场组件

This commit is contained in:
2026-01-12 00:00:49 +07:00
parent ba9f88a38e
commit 405ca17664
18 changed files with 241 additions and 111 deletions

View File

@@ -0,0 +1,22 @@
<script lang='ts' setup>
import IcRoundDownload from "~icons/ic/round-download";
import { client, safeClient } from "@/api";
const props = defineProps<{
id: string;
}>();
const { data } = await safeClient(client.api.file_storage({ id: props.id }).get());
</script>
<template>
<div>
<div>{{ data?.fileName }}</div>
<div>
<IcRoundDownload />
</div>
</div>
</template>
<style lang='css' scoped></style>