fix: icons和布局
All checks were successful
构建并部署前端到生产环境 / build-and-deploy (push) Successful in 1m1s

This commit is contained in:
luo
2026-07-29 17:29:55 +08:00
parent 7136655f48
commit b95daedba6
3 changed files with 90 additions and 22 deletions

View File

@@ -44,11 +44,14 @@ export const assetApi = {
});
},
getPackages(identifier) {
getPackages(identifier, packageType = '') {
return request({
url: '/api/c/v1/asset/packages',
method: 'GET',
data: { identifier }
data: {
identifier,
...(packageType ? { package_type: packageType } : {})
}
});
},