设计管理优化

This commit is contained in:
2025-08-20 19:21:52 +08:00
parent 6cab291522
commit 7e4a5e17cc
21 changed files with 632 additions and 108 deletions

View File

@ -116,3 +116,17 @@ export const getileDetail = (id) => {
method: 'get'
});
};
/**
* 获取二维码信息
* @param query
*/
export const codeInfo = (id) => {
const config: any = {
url: '/design/volumeFile/codeInfo?id=' + id,
method: 'get'
};
config.headers = {
Authorization: '1'
};
return request(config);
};