diff --git a/src/api/module/eam/device/storage.ts b/src/api/module/eam/device/storage.ts index 76e486b..34b8f90 100644 --- a/src/api/module/eam/device/storage.ts +++ b/src/api/module/eam/device/storage.ts @@ -22,3 +22,10 @@ export const getStorageOutByDeviceId = (deviceId: number) => method: 'get', params: { deviceId }, }) + +export const getStorageOutPage = (params: PageParam) => + eamServer({ + url: `/out-storage/page`, + method: 'get', + params, + }) diff --git a/src/pages/deviceInfo/components/BasicInfo.vue b/src/pages/deviceInfo/components/BasicInfo.vue index 1c05ca2..713bda8 100644 --- a/src/pages/deviceInfo/components/BasicInfo.vue +++ b/src/pages/deviceInfo/components/BasicInfo.vue @@ -1,5 +1,4 @@