You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import axiosApi from './AxiosApi.js' |
|
|
|
const apiList = { |
|
// 获取当前系统的所有枚举 |
|
enums: { |
|
method: 'GET', |
|
url: `/enums` |
|
} |
|
} |
|
|
|
export default { |
|
uploadFile: `${process.env.VUE_APP_DEV_REQUEST_DOMAIN_PREFIX}/attachment/upload`, |
|
enums (data) { |
|
return axiosApi({ |
|
...apiList.enums, |
|
data |
|
}) |
|
} |
|
}
|
|
|