联调拆表

This commit is contained in:
2025-11-10 16:09:38 +08:00
parent 639f92540f
commit 07add88856
6 changed files with 43 additions and 12 deletions

View File

@@ -70,6 +70,6 @@ export const installMeter = async function(data) {
}
// 拆表
export const uninstallMeter = async function(sn) {
return await DELETE(`/flow/doMeterRemoveApproval?sn=${sn}`);
export const uninstallMeter = async function({sn, reason, images}) {
return await DELETE(`/flow/doMeterRemoveApproval`, { sn, reason, images });
}