feat: 自定义版本功能更新
Build and Release / Build (push) Has been cancelled

- 新增家庭共享订阅管理
- 新增用户邀请统计
- 新增签名和订阅模式设置表单
- 更新 API 服务层和国际化文件
- UI 组件优化(enhanced-input、pro-table)
This commit is contained in:
2026-03-19 01:56:13 -07:00
parent 31803a1d24
commit 6b92979c7c
82 changed files with 3266 additions and 739 deletions
@@ -32,7 +32,7 @@ export default function RedemptionRecords({
const [loading, setLoading] = useState(false);
const [records, setRecords] = useState<API.RedemptionRecord[]>([]);
const [total, setTotal] = useState(0);
const [pagination, setPagination] = useState({ page: 1, size: 10 });
const [pagination, setPagination] = useState({ page: 1, size: 200 });
const fetchRecords = async () => {
if (!codeId) return;
@@ -59,12 +59,10 @@ export default function RedemptionRecords({
}, [open, codeId, pagination]);
return (
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="max-w-4xl max-h-[80vh] overflow-y-auto">
<Dialog onOpenChange={onOpenChange} open={open}>
<DialogContent className="max-h-[80vh] max-w-4xl overflow-y-auto">
<DialogHeader>
<DialogTitle>
{t("records", "Redemption Records")}
</DialogTitle>
<DialogTitle>{t("records", "Redemption Records")}</DialogTitle>
</DialogHeader>
<div className="mt-4">
{loading ? (
@@ -72,7 +70,7 @@ export default function RedemptionRecords({
<span>{t("loading", "Loading...")}</span>
</div>
) : records.length === 0 ? (
<div className="text-center py-8 text-muted-foreground">
<div className="py-8 text-center text-muted-foreground">
{t("noRecords", "No records found")}
</div>
) : (
@@ -102,7 +100,9 @@ export default function RedemptionRecords({
<TableCell>{record.id}</TableCell>
<TableCell>{record.user_id}</TableCell>
<TableCell>{record.subscribe_id}</TableCell>
<TableCell>{unitTimeMap[record.unit_time] || record.unit_time}</TableCell>
<TableCell>
{unitTimeMap[record.unit_time] || record.unit_time}
</TableCell>
<TableCell>{record.quantity}</TableCell>
<TableCell>
{record.redeemed_at
@@ -115,26 +115,28 @@ export default function RedemptionRecords({
</TableBody>
</Table>
{total > pagination.size && (
<div className="flex justify-between items-center mt-4">
<span className="text-sm text-muted-foreground">
<div className="mt-4 flex items-center justify-between">
<span className="text-muted-foreground text-sm">
{t("total", "Total")}: {total}
</span>
<div className="flex gap-2">
<button
className="px-3 py-1 text-sm border rounded hover:bg-accent disabled:opacity-50"
className="rounded border px-3 py-1 text-sm hover:bg-accent disabled:opacity-50"
disabled={pagination.page === 1}
onClick={() =>
setPagination((p) => ({ ...p, page: p.page - 1 }))
}
type="button"
>
{t("previous", "Previous")}
</button>
<button
className="px-3 py-1 text-sm border rounded hover:bg-accent disabled:opacity-50"
className="rounded border px-3 py-1 text-sm hover:bg-accent disabled:opacity-50"
disabled={pagination.page * pagination.size >= total}
onClick={() =>
setPagination((p) => ({ ...p, page: p.page + 1 }))
}
type="button"
>
{t("next", "Next")}
</button>