From ede230d16e1d88aadfa76f8ba9cdf2113e9a390e Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期六, 29 三月 2025 15:13:44 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/dev' into dev --- src/api/cnas/resourceDemand/device.js | 26 +++++++++++++++++++++++++- 1 files changed, 25 insertions(+), 1 deletions(-) diff --git a/src/api/cnas/resourceDemand/device.js b/src/api/cnas/resourceDemand/device.js index 400a1ec..adb7ee4 100644 --- a/src/api/cnas/resourceDemand/device.js +++ b/src/api/cnas/resourceDemand/device.js @@ -92,10 +92,18 @@ }); } -//鏌ヨ鏁伴噰閰嶇疆 +// 鏌ヨ鏁伴噰閰嶇疆 export function queryDataAcquisitionConfiguration(query) { return request({ url: "/deviceScope/queryDataAcquisitionConfiguration", + method: "get", + params: query, + }); +} +// 鏌ヨ鏁伴噰閰嶇疆 +export function queryProductConfiguration(query) { + return request({ + url: "/deviceScope/queryProductConfiguration", method: "get", params: query, }); @@ -105,6 +113,14 @@ export function saveDataAcquisitionConfiguration(data) { return request({ url: "/deviceScope/saveDataAcquisitionConfiguration", + method: "post", + data: data, + }); +} +// 缁存姢鏂囦欢閰嶇疆 +export function saveDeviceFileConfiguration(data) { + return request({ + url: "/deviceScope/saveDeviceFileConfiguration", method: "post", data: data, }); @@ -1243,3 +1259,11 @@ params: query, }); } +//浣滀笟鎸囧涔� 鏌ヨ +export function getDeviceById(query) { + return request({ + url: "/deviceScope/getDeviceById", + method: "get", + params: query, + }); +} -- Gitblit v1.9.3