l 3.31
This commit is contained in:
commit
b14a5434b9
|
@ -36,6 +36,7 @@ export const getHomePageInfo = (params) => {
|
||||||
params
|
params
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
|
// 环境信息
|
||||||
export const getEnvironmentInfo = (params) => {
|
export const getEnvironmentInfo = (params) => {
|
||||||
return axios.get('api/gk/info/getEnvironmentInfo', { params
|
return axios.get('api/gk/info/getEnvironmentInfo', { params
|
||||||
})
|
})
|
||||||
|
@ -46,25 +47,26 @@ export const getSiteInfo = (params) => {
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
export const getSwitchInfo = (params) => {
|
export const getSwitchInfo = (params) => {
|
||||||
return axios.get('api/gk/info/getSwitchInfo', {
|
return axios.get('/gk/info/getSwitchInfo', {
|
||||||
params
|
params
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
|
|
||||||
//查询实时事件
|
//查询实时事件
|
||||||
export const getDeviceRecord = (params) => {
|
export const getDeviceRecord = (params) => {
|
||||||
return axios.get('api/gk/info/getDeviceRecord', {
|
return axios.get('/gk/info/getDeviceRecord', {
|
||||||
params
|
params
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
//查询实时记录下拉框
|
//查询实时记录下拉框
|
||||||
export const getDeviceNum = (params) => {
|
export const getDeviceNum = (params) => {
|
||||||
return axios.get('api/gk/info/getDeviceNum', {
|
return axios.get('/gk/info/getDeviceNum', {
|
||||||
params
|
params
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
// 修改提交
|
// 修改提交
|
||||||
export const updateDeviceRecord = (params) => {
|
export const updateDeviceRecord = (params) => {
|
||||||
return axios.get('api/gk/info/updateDeviceRecord', {
|
return axios.get('/gk/info/updateDeviceRecord', {
|
||||||
params
|
params
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
|
|
|
@ -1776,7 +1776,7 @@ export default {
|
||||||
var url =
|
var url =
|
||||||
"http://" +
|
"http://" +
|
||||||
that.locanionIp +
|
that.locanionIp +
|
||||||
":5500/demo/demo_window_simple_previewNew.html";
|
":5501/demo/demo_window_simple_previewNew.html";
|
||||||
window.open(url, "baidu", "top=200,left=450,width=1000,height=600");
|
window.open(url, "baidu", "top=200,left=450,width=1000,height=600");
|
||||||
console.log("bbb");
|
console.log("bbb");
|
||||||
}, 1000 * 1.5);
|
}, 1000 * 1.5);
|
||||||
|
@ -1787,7 +1787,7 @@ export default {
|
||||||
var url =
|
var url =
|
||||||
"http://" +
|
"http://" +
|
||||||
that.locanionIp +
|
that.locanionIp +
|
||||||
":5500/demo/demo_window_simple_preview.html";
|
":5501/demo/demo_window_simple_preview.html";
|
||||||
window.open(url, "baidu", "top=200,left=450,width=1000,height=600");
|
window.open(url, "baidu", "top=200,left=450,width=1000,height=600");
|
||||||
}, 1000 * 1.5);
|
}, 1000 * 1.5);
|
||||||
} else if (res.val == "Human") {
|
} else if (res.val == "Human") {
|
||||||
|
|
|
@ -17,8 +17,7 @@ module.exports = {
|
||||||
proxy: {
|
proxy: {
|
||||||
'/api': { //代理的名字
|
'/api': { //代理的名字
|
||||||
// target: 'https://309k63x452.oicp.vip',
|
// target: 'https://309k63x452.oicp.vip',
|
||||||
target: 'http://221.226.19.85:10123/',
|
target: 'http://221.226.19.85:10123/',
|
||||||
|
|
||||||
ws: true,
|
ws: true,
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
pathRewrite:{
|
pathRewrite:{
|
||||||
|
|
Loading…
Reference in New Issue