diff --git a/src/apis/index.js b/src/apis/index.js index 98608ba..efc13cd 100644 --- a/src/apis/index.js +++ b/src/apis/index.js @@ -23,10 +23,10 @@ export const getMonthsDate = params => http.get(`${corrosion}/statistics/months` export const getRealtimeData = params => http.get(`${corrosion}/statistics/realtime`, { params }); // 获取网络配置参数 -export const getConfigNetwork = () => http.get(`${corrosion}/config/network`); +export const getConfigNetwork = params => http.get(`${corrosion}/config/network`, { params }); // 获取功能配置参数 -export const getConfigFunction = () => http.get(`${corrosion}/config/function`); +export const getConfigFunction = params => http.get(`${corrosion}/config/function`, { params }); // 提交网络配置参数 export const createConfigNetwork = data => http.post(`${corrosion}/config/network`, data); diff --git a/src/components/device-select-and-status.vue b/src/components/device-select-and-status.vue index c643b82..82d32d5 100644 --- a/src/components/device-select-and-status.vue +++ b/src/components/device-select-and-status.vue @@ -10,14 +10,13 @@ const store = useStore(); const devices = computed(() => store.state.device.devices); // 设备/站点列表 const deviceId = ref(''); // 选中的设备id const currentDeviceId = computed(() => store.state.device.currentDeviceId); // 正在操作的设备的id -const get = computed(() => (props.status.get ? '设置生效' : '等待下发')); +// const get = computed(() => (props.status.get ? '设置生效' : '等待下发')); const set = computed(() => (props.status.set ? '设置生效' : '等待下发')); // 监听currentDeviceId watch( () => currentDeviceId.value, newValue => { - console.log('newValue: ', newValue); if (newValue && deviceId.value !== newValue) { deviceId.value = newValue; } @@ -33,8 +32,8 @@ watch( - 获取状态: - {{ get }} + 设置状态: {{ set }} diff --git a/src/views/function-config.vue b/src/views/function-config.vue index 4f8bf1f..cbba5e9 100644 --- a/src/views/function-config.vue +++ b/src/views/function-config.vue @@ -1,4 +1,7 @@