From 4757e21f5477d10934c8e26d28e19bbafaa7196f Mon Sep 17 00:00:00 2001
From: haoxuan <haoxuan>
Date: 星期四, 02 十一月 2023 19:26:56 +0800
Subject: [PATCH] 物料详情的弹框开发一半

---
 src/api/task.ts |   13 +++++++++++--
 1 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/src/api/task.ts b/src/api/task.ts
index 8be45af..bb0f969 100644
--- a/src/api/task.ts
+++ b/src/api/task.ts
@@ -16,6 +16,7 @@
   startTime: number
   endTime: number
   Status: number
+  finishNumber: number
 }
 
 export interface Procedure {
@@ -46,8 +47,8 @@
   startTime: number
   endTime: number
   workHours: string
-  inputMaterials: string
-  outputMaterials: string
+  inputMaterials: inputMaterial[]
+  outputMaterials: inputMaterial[]
   workers: Worker[]
   allProcedureNames: string[]
   channel: number
@@ -61,6 +62,14 @@
   CurrentProcedureIndex: number
   CanStarted: boolean
 }
+export interface inputMaterial {
+  materialId: string
+  materialName: string
+  amount: number
+  unit: string
+  background: string
+  date: string
+}
 
 export interface Worker {
   workerId: string

--
Gitblit v1.8.0