|
import request from '@/utils/request.js';
|
|
import axios from 'axios';
|
|
export const getHostInfoApi = params => {
|
|
return axios.get('api/GetHostInfo', {
|
|
params
|
|
});
|
|
};
|
|
//获取配置信息
|
|
export const getFtppzApi = params => {
|
|
return axios.get('api/GetFtppz', {
|
|
params
|
|
});
|
|
};
|