emis-oms-frontend/src/api/upload.js

11 lines
177 B
JavaScript
Raw Normal View History

2023-11-27 08:29:42 +00:00
export function getSecret(type, path, isPublic) {
return request({
url: '/getSecret',
headers: {
isToken: false
},
method: 'post',
data: type
})
}