From 531e74656547ad567e63b875fa7ab1fb9fd54717 Mon Sep 17 00:00:00 2001 From: wangqi <3188864257@qq.com> Date: Thu, 19 Dec 2024 15:40:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=B8=80=E4=BA=9B=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/module/eam/device/storage.ts | 7 + src/pages/deviceInfo/components/BasicInfo.vue | 1 - .../deviceInfo/components/DeliveryInfo.vue | 1 + .../deviceInfo/components/MaintainInfo.vue | 6 +- src/pages/deviceStorage/index.vue | 189 ++++++++++++++++++ src/pages/deviceStorage/utils.ts | 7 + src/pages/system/config/index.vue | 64 ++++++ 7 files changed, 271 insertions(+), 4 deletions(-) create mode 100644 src/pages/deviceStorage/index.vue create mode 100644 src/pages/deviceStorage/utils.ts create mode 100644 src/pages/system/config/index.vue 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 @@