manual-add-device

This commit is contained in:
Tink
2025-06-26 11:09:17 +08:00
parent 78dc266eee
commit 6ec7a1fe09
4 changed files with 180 additions and 3 deletions
@@ -1,5 +1,6 @@
import { getServiceUrl } from '../api';
import RequestService from '../httpRequest';
import request from '../request'
export default {
// 已绑设备
@@ -68,4 +69,8 @@ export default {
})
}).send()
},
// 手动添加设备
manualAddDevice: (params, callback) => {
return request.post('/device/manual-add', params, callback);
},
}