From 2c4edb31e7da37c98e5660ab478f43e01a77003c Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期二, 14 三月 2023 15:57:10 +0800 Subject: [PATCH] 修改指标选择 --- src/views/facilityManagement/safetyGoodsAndEquipment/index.ts | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/facilityManagement/safetyGoodsAndEquipment/index.ts b/src/views/facilityManagement/safetyGoodsAndEquipment/index.ts index 3772b41..63748a4 100644 --- a/src/views/facilityManagement/safetyGoodsAndEquipment/index.ts +++ b/src/views/facilityManagement/safetyGoodsAndEquipment/index.ts @@ -36,6 +36,7 @@ activeName: string; goodsData: BigClassifyType []; goodsBigClassifyList: BigClassifyType []; + consumableList?: Type []; total: number; listQuery: { pageSize: number; @@ -48,6 +49,7 @@ id: null | number; materialClassifyName: string; parentId: number | null; + consumable?: number | null; }; goodsClassifyRules: { @@ -78,7 +80,7 @@ outStorageData: { smId: null | number, count: null | number, - claimantId: null | number, + receiveUid: null | number, rfid: null | string, }; outStorageDataRules: { @@ -96,7 +98,7 @@ bigClassifyId: null | number, smallClassifyId: null | number, depId: null | number, - consumable: null | number, + // consumable: null | number, } export type DataType = { @@ -119,6 +121,7 @@ export type BigClassifyType = { id: number; materialClassifyName: string; + consumable?: number | null; parentId?: number; childList?: BigClassifyType []; } -- Gitblit v1.9.2