This commit is contained in:
xiaozhiyong
2026-05-25 10:18:54 +08:00
parent 4d39de6299
commit 4c5456bbcf
7 changed files with 258 additions and 73 deletions

View File

@@ -0,0 +1,9 @@
import service from '@/utils/request'
export const getDeviceGatewayListByPage = (data) => {
return service({
url: '/device/getDeviceGatewayListByPage',
method: 'post',
data: data
})
}

View File

@@ -1,8 +1,16 @@
import service from '@/utils/request'
export const resetPassword = (data) => {
export const getDeviceListByPage = (data) => {
return service({
url: '/user/resetPassword',
url: '/device/getDeviceListByPage',
method: 'post',
data: data
})
}
export const deviceOperation = (data) => {
return service({
url: '/device/deviceOperation',
method: 'post',
data: data
})