|
import config from "@/config"
|
|
import http from "@/utils/request"
|
|
export default {
|
|
mplogx: {
|
|
list: {
|
|
name: "列表",
|
|
req: async function(data){
|
|
return await http.post(
|
|
`${config.HOST_URL}/hfnf_api/mplogx/`,
|
|
// "http://10.0.11.52:5800/mplogx/",
|
|
data
|
|
);
|
|
}
|
|
},
|
|
}
|
|
} |