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 @@
+
+