From c99aff48171ee446ad5ff5898c4acf8194f200aa Mon Sep 17 00:00:00 2001 From: betaqi <3188864257@qq.com> Date: Mon, 14 Jul 2025 12:17:33 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=AE=BE=E5=A4=87=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/module/eam/device/index.ts | 1 + src/pages/deviceInfo/components/BasicInfo.vue | 88 ++++++++++++------- .../deviceInfo/components/DeliveryInfo.vue | 2 +- src/pages/deviceInfo/components/TestInfo.vue | 1 - src/pages/deviceInfo/index.vue | 26 +++++- src/pages/deviceInfo/info.vue | 7 +- src/pages/deviceInfo/utils.ts | 1 + 7 files changed, 87 insertions(+), 39 deletions(-) diff --git a/src/api/module/eam/device/index.ts b/src/api/module/eam/device/index.ts index eed17ca..abb3d67 100644 --- a/src/api/module/eam/device/index.ts +++ b/src/api/module/eam/device/index.ts @@ -31,6 +31,7 @@ export interface IDeviceOV { cost: string currentFirmwareId: string targetFirmwareId: string + iccid?: string } export const operantDevice = (type: OperantAction, data: IDeviceOV) => { diff --git a/src/pages/deviceInfo/components/BasicInfo.vue b/src/pages/deviceInfo/components/BasicInfo.vue index 9a4e915..122ae31 100644 --- a/src/pages/deviceInfo/components/BasicInfo.vue +++ b/src/pages/deviceInfo/components/BasicInfo.vue @@ -30,18 +30,19 @@ class="input" v-model="params.categoryId" :options="categoryTreeData" - :disabled="disabled" + :disabled="true" :props="{ checkStrictly: true, value: 'id', label: 'name', emitPath: false, }" + @change="onChangeCategoryId" />
-
+