From 8a22c9bb675e14ebf2e5ba78e1a7b9cd101cccce Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 29 Apr 2025 10:44:02 +0800
Subject: [PATCH] 智飞工单审核详情显示
---
src/api/device-setting/index.js | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/api/device-setting/index.js b/src/api/device-setting/index.js
index 07f2d84..b7a1f3e 100644
--- a/src/api/device-setting/index.js
+++ b/src/api/device-setting/index.js
@@ -27,11 +27,12 @@
* @param {*} body
* @returns
*/
-export const setThermalCurrentPaletteStyle = (deviceSn, workspaceId, body) => {
+export const setThermalCurrentPaletteStyle = (deviceSn, workspaceId, param) => {
return request({
// /manage/api/v1/devices/selectDevicePage
+ // url: `/localApi/manage/api/v1/devices/${workspaceId}/devices/${deviceSn}/setThermalCurrentPaletteStyle`,
url: `/drone-device-core/manage/api/v1/devices/${workspaceId}/devices/${deviceSn}/setThermalCurrentPaletteStyle`,
method: 'put',
- body,
+ data: param,
})
}
--
Gitblit v1.9.3