diff --git a/src/views/admin/orgapplyinfo/components/OrgHistoryForm.vue b/src/views/admin/orgapplyinfo/components/OrgHistoryForm.vue
index c9931fc..668bb9d 100644
--- a/src/views/admin/orgapplyinfo/components/OrgHistoryForm.vue
+++ b/src/views/admin/orgapplyinfo/components/OrgHistoryForm.vue
@@ -38,25 +38,29 @@
-
-
-
-
-
- 审核通过
- 审核驳回
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ 审核通过
+ 审核驳回
+
+
+
+
+
+
+
+
+
+
+
+
@@ -65,6 +69,7 @@ import { ref, reactive, computed, onMounted } from 'vue';
import { Table as ATable, Input, Row, Col, Form } from 'ant-design-vue';
import { applyObj } from '../OrgModifyInfo.data'
import JImageUpload from '/@/components/Form/src/jeecg/components/JImageUpload.vue';
+import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue';
import { upInfoAudit, getHisModifyInfo } from '../OrgModifyInfo.api';
import { useMessage } from '/@/hooks/web/useMessage';
import { initDictOptions } from '/@/utils/dict';
@@ -169,9 +174,10 @@ const setRowClassName = (record) => {
return record.d2 !== record.d3 && record.d1 !== 'createTime' ? 'highlight-row' : '';
};
-function show(data) {
- console.log("🌊 ~ show ~ data:", data)
+const izAuditHis = ref(true)
+function show(data) {
+ izAuditHis.value = false
// 存储id和pkId到formData
const idRecord = data.find(item => item.d1 === 'id');
const pkIdRecord = data.find(item => item.d1 === 'pkId');
@@ -194,8 +200,8 @@ function show(data) {
}
async function hisShow(record) {
+ izAuditHis.value = true
let data = await getHisModifyInfo(record)
- console.log("🌊 ~ show ~ data:", data)
// 存储id和pkId到formData
const idRecord = data.find(item => item.d1 === 'id');
@@ -210,6 +216,9 @@ async function hisShow(record) {
}
formData.comName = data.find(item => item.d1 === 'comName').d2;
formData.openId = data.find(item => item.d1 === 'openId').d2;
+ //审核历史
+ formData.status = data.find(item => item.d1 === 'status').d3;
+ formData.content = data.find(item => item.d1 === 'content').d3;
tableData.value = data.map(item => ({
...item,
// 处理null/undefined显示为空字符串