From 9e45b78f318f8d9d18a7f54bcd0f3695050da9fe Mon Sep 17 00:00:00 2001 From: tao Date: Tue, 23 Dec 2025 13:37:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=B7=A5=E5=8D=95=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E7=95=8C=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/pwoManage/index.vue | 121 +++++++++++ src/views/pwoManage/layout.vue | 376 +++++++++++++++++++++++++++++++++ src/views/pwoManage/model.d.ts | 16 ++ 3 files changed, 513 insertions(+) create mode 100644 src/views/pwoManage/layout.vue create mode 100644 src/views/pwoManage/model.d.ts diff --git a/src/views/pwoManage/index.vue b/src/views/pwoManage/index.vue index e69de29..f2d8c08 100644 --- a/src/views/pwoManage/index.vue +++ b/src/views/pwoManage/index.vue @@ -0,0 +1,121 @@ + + + + + diff --git a/src/views/pwoManage/layout.vue b/src/views/pwoManage/layout.vue new file mode 100644 index 0000000..b1bbb28 --- /dev/null +++ b/src/views/pwoManage/layout.vue @@ -0,0 +1,376 @@ + + + + + diff --git a/src/views/pwoManage/model.d.ts b/src/views/pwoManage/model.d.ts new file mode 100644 index 0000000..37037d6 --- /dev/null +++ b/src/views/pwoManage/model.d.ts @@ -0,0 +1,16 @@ +export interface WorkOrderInfo { + code?: string; + batchNo?: string; + status?: string; + tarMaterialName?: string; + tarMaterialCode?: string; + planQty?: number; +} + +export interface ProcessInfo { + process?: string; + cut?: string; + jobCode?: string; + status?: string; + equipment?: string; +}