From fbcd25629359ac2c9c210ce6ccf52810fbc90c29 Mon Sep 17 00:00:00 2001 From: "1378012178@qq.com" <1378012178@qq.com> Date: Fri, 17 Oct 2025 13:55:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=BA=E6=9E=84=E5=AE=A1=E6=A0=B8=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E4=BC=A0=E7=BB=99=E5=90=8E=E5=8F=B0=E7=9A=84=E5=8F=82?= =?UTF-8?q?=E6=95=B0=EF=BC=8C=E7=94=A8=E4=BA=8E=E5=8F=91=E9=80=81=E9=80=9A?= =?UTF-8?q?=E7=9F=A5=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../admin/orgmodifyinfo/components/OrgHistoryForm.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/views/admin/orgmodifyinfo/components/OrgHistoryForm.vue b/src/views/admin/orgmodifyinfo/components/OrgHistoryForm.vue index aa15ac3..e29214c 100644 --- a/src/views/admin/orgmodifyinfo/components/OrgHistoryForm.vue +++ b/src/views/admin/orgmodifyinfo/components/OrgHistoryForm.vue @@ -38,7 +38,8 @@ - + @@ -84,7 +85,8 @@ const formData = reactive>({ status: undefined, content: '', id: '', - pkId: '' + pkId: '', + comName: '', }); const validatorRules = reactive({ status: [{ required: true, message: '请选择审核结果!' },], @@ -165,6 +167,7 @@ const setRowClassName = (record) => { }; function show(data) { +console.log("🌊 ~ show ~ data:", data) // 存储id和pkId到formData const idRecord = data.find(item => item.d1 === 'id'); @@ -183,6 +186,8 @@ function show(data) { if (statusRecord?.status == '5') { formData.status = 'modifyFail' } + formData.comName = data.find(item => item.d1 === 'comName').d2; + formData.openId = data.find(item => item.d1 === 'openId').d2; tableData.value = data.map(item => ({ ...item, // 处理null/undefined显示为空字符串