feat: 统一管理端多语言、配置与票据/结算页面重构

This commit is contained in:
2026-05-20 16:27:06 +08:00
parent 37b13278ef
commit 08a11a1589
81 changed files with 2059 additions and 490 deletions

View File

@@ -0,0 +1,9 @@
"use client";
import { useTranslation } from "react-i18next";
export function InvalidSettlementBatchId(): React.ReactElement {
const { t } = useTranslation("settlement");
return <p className="text-destructive text-sm">{t("invalidBatchId")}</p>;
}