From bf4c9901bb5ba106400b245f6a347df4bfd5b53b Mon Sep 17 00:00:00 2001
From: andy <1042025947@qq.com>
Date: Tue, 14 Jul 2026 09:29:41 +0800
Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E6=B5=81=E8=BD=AC=E8=B0=83?=
=?UTF-8?q?=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.env.development | 2 +-
src/api/flowingAround.ts | 10 +-
src/api/production.ts | 11 +-
src/views/biz/flowingAround/assingWork.vue | 50 +++++++
src/views/biz/flowingAround/index.vue | 161 +++++++++++++--------
src/views/production/myassigtask/index.vue | 10 +-
6 files changed, 172 insertions(+), 72 deletions(-)
create mode 100644 src/views/biz/flowingAround/assingWork.vue
diff --git a/.env.development b/.env.development
index 1b9cadc..ad8f5af 100644
--- a/.env.development
+++ b/.env.development
@@ -5,7 +5,7 @@ VITE_APP_TITLE = 伊特机械MES
VITE_APP_ENV = 'development'
# 开发环境
-VITE_APP_BASE_API = 'http://192.168.5.230/api'
+VITE_APP_BASE_API = 'http://192.168.12.230:8888/api'
#VITE_APP_BASE_API = 'http://192.168.5.14:9100/gateway'
#VITE_APP_BASE_API = '/dev-api'
diff --git a/src/api/flowingAround.ts b/src/api/flowingAround.ts
index 387fda6..9ee8d1f 100644
--- a/src/api/flowingAround.ts
+++ b/src/api/flowingAround.ts
@@ -5,22 +5,30 @@ export interface FlowingAround {
id?: number
currentlyPrefaceId?: number
+ currentlyPrefaceName?: string
nextPrefaceId?: number
+ nextPrefaceName?: string
businessId?: number
businessCode?: string
-
+ businessName?: string
+
+ flowingAroundType?: number
quantity?: number
confirmUserId?: number
+ confirmUserName?: string
confirmTime?: string
+ confirmResult?: string
submitter?: number
+ submitterName?: string
submitTime?: string
+ reason?: string
}
diff --git a/src/api/production.ts b/src/api/production.ts
index 0374a9c..00aca69 100644
--- a/src/api/production.ts
+++ b/src/api/production.ts
@@ -62,4 +62,13 @@ export function inspectio(data:any) {
method: 'post',
data
})
-}
\ No newline at end of file
+}
+
+
+//派工数据详情
+export function info(id:number) {
+ return request({
+ url: `/mes/dispatch/${id}`,
+ method: 'get',
+ })
+}
diff --git a/src/views/biz/flowingAround/assingWork.vue b/src/views/biz/flowingAround/assingWork.vue
new file mode 100644
index 0000000..5e92e3f
--- /dev/null
+++ b/src/views/biz/flowingAround/assingWork.vue
@@ -0,0 +1,50 @@
+
+