可信代码库-编程语言接口对接

This commit is contained in:
付民康
2025-06-13 18:01:31 +08:00
parent b3c1e9f159
commit 0cd5d14245
5 changed files with 21 additions and 12 deletions

View File

@@ -362,12 +362,10 @@ export function uploadImage(file: File) {
// 获取字典
export function basicDict(data) {
return axios.request({
url: '/gateway/basic/dict/children/list',
method: 'POST',
return request({
url: `dict/children/list`,
method: 'post',
data: data,
headers: {
Authorization: 'Bearer ' + localStorage.getItem('access_token')
}
});
}