From e1d380a930e73d8355a4695ca5f5b91f471c2394 Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: Mon, 28 Apr 2025 13:32:12 +0800
Subject: [PATCH] 修改大屏
---
src/views/components/flowDetail.vue | 23 +++++++++++++++--------
1 files changed, 15 insertions(+), 8 deletions(-)
diff --git a/src/views/components/flowDetail.vue b/src/views/components/flowDetail.vue
index 00b2bce..d282b00 100644
--- a/src/views/components/flowDetail.vue
+++ b/src/views/components/flowDetail.vue
@@ -44,14 +44,16 @@
id: '',
name: '',
productSn: '',
- code: ''
+ code: '',
+ companyId: null
},
dataList: [],
active: null
})
-const openDialog = async (type, value) => {
+const openDialog = async (type, value,companyId) => {
+
title.value = type;
if(type === 'code'){
state.form.code = value
@@ -59,7 +61,7 @@
state.form = JSON.parse(JSON.stringify(value))
}
-
+ state.form.companyId = companyId
await getAllFlow()
}
@@ -68,11 +70,13 @@
let param = {}
if(title.value == 'pro'){
param = {
- productId: state.form.id
+ productId: state.form.id,
+ companyId: state.form.companyId
}
}else {
param = {
- productId: state.form.productId
+ productId: state.form.productId,
+ companyId: state.form.companyId
}
}
const res = await getAllProFlow(param)
@@ -103,11 +107,13 @@
let param = {}
if(title.value == 'raw'){
param = {
- hazmatId: state.form.id
+ hazmatId: state.form.id,
+ companyId: state.form.companyId
}
}else {
param = {
- hazmatId: state.form.hazmatId
+ hazmatId: state.form.hazmatId,
+ companyId: state.form.companyId
}
}
const res = await getAllRawFlow(param)
@@ -136,7 +142,8 @@
}
}else if(title.value == 'code'){
const param = {
- code: state.form.code
+ code: state.form.code,
+ companyId: state.form.companyId
}
const res = await getFlowByCode(param)
if(res.code == 200){
--
Gitblit v1.9.2