You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
220 B
JavaScript
11 lines
220 B
JavaScript
|
3 months ago
|
// API配置文件
|
||
|
|
export const API_CONFIG = {
|
||
|
|
// API服务器基础地址
|
||
|
|
BASE_URL: 'http://192.168.110.38:8100',
|
||
|
|
|
||
|
|
// API端点
|
||
|
|
ENDPOINTS: {
|
||
|
|
HELLO: '/api/hello',
|
||
|
|
PARETO_ANALYSIS: '/api/qc/pareto'
|
||
|
|
}
|
||
|
|
}
|