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" />
-
+