diff --git a/src/components/Audit/InfoModal/index.vue b/src/components/Audit/InfoModal/index.vue
index 3a46cc60..d82e9e74 100644
--- a/src/components/Audit/InfoModal/index.vue
+++ b/src/components/Audit/InfoModal/index.vue
@@ -104,12 +104,18 @@
-
@@ -275,6 +281,7 @@ const props = defineProps(['infoData','control','type','modalLoading'])
const emits = defineEmits(['handleOk','closeModal','closeCase','reSubmit','changeLoading'])
const typenameOptions = ref([])
+const tubanlaiyuanOptions = ref([])
const countyOptions = ref([])
const streetOptions = ref([])
const communityOptions = ref([])
@@ -305,6 +312,14 @@ onMounted(() => {
}
})
})
+ getLoad({code: 'wfydtbly'}).then(res => {
+ tubanlaiyuanOptions.value = res.map(item => {
+ return {
+ label: item.itemName,
+ value: item.itemValue
+ }
+ })
+ })
getChildrenTree({ parentId: 371300 }).then(res => {
countyOptions.value = res.map(item => {
return {
diff --git a/src/views/demo/illegalmining/mainaudit/InfoModal/index.vue b/src/views/demo/illegalmining/mainaudit/InfoModal/index.vue
index f5f8653b..e70f5c5b 100644
--- a/src/views/demo/illegalmining/mainaudit/InfoModal/index.vue
+++ b/src/views/demo/illegalmining/mainaudit/InfoModal/index.vue
@@ -64,9 +64,9 @@