@@ -37,7 +34,7 @@ const props = defineProps({
}
});
-const emits = defineEmits(["update:modelValue", "getDepValue"]);
+const emits = defineEmits(["update:modelValue"]);
const formValidate = ref();
const rules = reactive({
bkshzt: [{ required: true, message: "请选择审核状态", trigger: "change" }]
@@ -47,7 +44,7 @@ const listQuery = ref({});
const submitForm = () => {
formValidate.value.validate((valid) => {
if (!valid) return false;
- let params = { ids: props.ids, ...listQuery.value };
+ let params = { ids: [props.data.id], ...listQuery.value };
qcckPost(params, "/mosty-gsxt/tbGsxtRqfjRy/updateByBksh").then((res) => {
ElMessage.success("成功");
emits("update:modelValue", false);
diff --git a/src/views/backOfficeSystem/ExcavationResearch/ZdryFjyp/index.vue b/src/views/backOfficeSystem/ExcavationResearch/ZdryFjyp/index.vue
index 0bbea48..2d89d77 100644
--- a/src/views/backOfficeSystem/ExcavationResearch/ZdryFjyp/index.vue
+++ b/src/views/backOfficeSystem/ExcavationResearch/ZdryFjyp/index.vue
@@ -29,6 +29,7 @@
@@ -81,8 +82,26 @@