From 2453a589a623b2448a8cc940d8dce3da6698c50c Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期一, 05 二月 2024 14:15:49 +0800 Subject: [PATCH] 获取设备列表、切换设备列表、开始生产接口和逻辑修改、结束任务联调、工艺信息联调、切换任务联调 --- src/stores/devices.ts | 13 ++++++++----- 1 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/stores/devices.ts b/src/stores/devices.ts index e0f81ef..0b71784 100644 --- a/src/stores/devices.ts +++ b/src/stores/devices.ts @@ -25,11 +25,14 @@ data: deviceRes, run: startDevicePolling, cancel: cancelDevicePolling - } = useRequest(getDeviceList, { - manual: true, - pollingInterval: DEVICE_INFO_POLLING_DURATION, - pollingWhenHidden: false - }) + } = useRequest( + getDeviceList + // { + // manual: true, + // pollingInterval: DEVICE_INFO_POLLING_DURATION, + // pollingWhenHidden: false + // } + ) function startPollingDevice() { cancelDevicePolling() -- Gitblit v1.8.0