feat: 全部厂商和存储桶管理

This commit is contained in:
zlg
2024-07-10 15:00:44 +08:00
parent 0fb5f89744
commit bc90bae744
34 changed files with 1878 additions and 192 deletions

View File

@@ -0,0 +1,11 @@
/** @format */
import { lazy } from "react";
const upBucket = lazy(
() =>
new Promise((resolve: any) => {
resolve(import("@/components/Main/Bucket/components/UpDrawer.tsx"));
}),
);
export default upBucket;