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

@@ -32,3 +32,16 @@ export const getDirAndFileList = (userId: any, dirName: any, bucket: any) => {
},
});
};
/**
* 获取用户拥有的厂商
* @param userId
*/
export const getBrandsList = (userId: any) => {
return web.request({
url: "/oss/oss/minio/userId",
method: "get",
params: {
userId: userId,
},
});
};