From 576f987f37db28f4ff5c998696a5e29a47551978 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9B=B9=E7=A3=8A?= <45566618@qq.com>
Date: Thu, 9 Oct 2025 17:53:53 +0800
Subject: [PATCH] =?UTF-8?q?=E4=B9=A1=E9=95=87=E9=85=8D=E7=BD=AE=E5=A2=9E?=
=?UTF-8?q?=E5=8A=A0=E4=BA=8C=E7=BB=B4=E7=A0=81=E4=B8=8A=E4=BC=A0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/base/waterFlowConfig/BlWaterFlowConfig.data.ts | 5 +++++
.../waterFlowConfig/components/BlWaterFlowConfigForm.vue | 6 ++++++
2 files changed, 11 insertions(+)
diff --git a/src/views/base/waterFlowConfig/BlWaterFlowConfig.data.ts b/src/views/base/waterFlowConfig/BlWaterFlowConfig.data.ts
index b27ae07..3cd39f2 100644
--- a/src/views/base/waterFlowConfig/BlWaterFlowConfig.data.ts
+++ b/src/views/base/waterFlowConfig/BlWaterFlowConfig.data.ts
@@ -34,6 +34,11 @@ export const columns: BasicColumn[] = [
return text;
},
},
+ {
+ title: '二维码',
+ dataIndex: 'qrCode',
+ customRender: render.renderImage,
+ },
];
diff --git a/src/views/base/waterFlowConfig/components/BlWaterFlowConfigForm.vue b/src/views/base/waterFlowConfig/components/BlWaterFlowConfigForm.vue
index 7136e2a..b037aaf 100644
--- a/src/views/base/waterFlowConfig/components/BlWaterFlowConfigForm.vue
+++ b/src/views/base/waterFlowConfig/components/BlWaterFlowConfigForm.vue
@@ -29,6 +29,11 @@
+
+
+
+
+
@@ -45,6 +50,7 @@
import { saveOrUpdate } from '../BlWaterFlowConfig.api';
import { Form } from 'ant-design-vue';
import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue';
+ import JImageUpload from '/@/components/Form/src/jeecg/components/JImageUpload.vue';
const props = defineProps({
formDisabled: { type: Boolean, default: false },
formData: { type: Object, default: () => ({})},