diff --git a/src/components/Form/src/jeecg/components/modal/JPopupOnlReportModal.vue b/src/components/Form/src/jeecg/components/modal/JPopupOnlReportModal.vue
index 645ad95..80ca90e 100644
--- a/src/components/Form/src/jeecg/components/modal/JPopupOnlReportModal.vue
+++ b/src/components/Form/src/jeecg/components/modal/JPopupOnlReportModal.vue
@@ -101,7 +101,11 @@
const toggleSearchStatus = ref(false);
const attrs = useAttrs();
const tableScroll = ref({ x: true });
- const getBindValue = Object.assign({}, unref(props), unref(attrs));
+ // update-begin--author:liaozhiyang---date:20230811---for:【issues/675】子表字段Popup弹框数据不更新
+ const getBindValue = computed(() => {
+ return Object.assign({}, unref(props), unref(attrs));
+ });
+ // update-end--author:liaozhiyang---date:20230811---for:【issues/675】子表字段Popup弹框数据不更新
const [
{
visibleChange,
diff --git a/src/components/JVxeCustom/src/components/JVxePopupCell.vue b/src/components/JVxeCustom/src/components/JVxePopupCell.vue
index e3144fd..5efe444 100644
--- a/src/components/JVxeCustom/src/components/JVxePopupCell.vue
+++ b/src/components/JVxeCustom/src/components/JVxePopupCell.vue
@@ -1,8 +1,8 @@
-
+