diff --git a/src/components/StandardResolutionSheet.vue b/src/components/StandardResolutionSheet.vue index 42e94d4c..a0f52244 100644 --- a/src/components/StandardResolutionSheet.vue +++ b/src/components/StandardResolutionSheet.vue @@ -114,7 +114,7 @@ export default { clauseLabelInfo: {}, // 条文标签数据 clauseLabelHideField: ['item_content'], needDictField: [FieldType.USER_SINGLE.value, FieldType.ORGAN_SINGLE.value, FieldType.STANDARD_MORE.value, FieldType.ORGAN_MORE.value, FieldType.OPTION_SINGLE.value, FieldType.OPTION_MORE.value, FieldType.TREE.value], - splitId: null // 文档拆分处的id + queryParams: {} } }, methods: { @@ -130,7 +130,7 @@ export default { }, initDetailInfo () { this.loading = true - previewDocSplit({ id: this.splitId }).then(res => { + previewDocSplit(this.queryParams).then(res => { if (res.success) { const data = res.result || {} this.treeData = data.sarFileSplitMenuEO || [] diff --git a/src/views/documentTool/documentSplit/StandardSplitSheet.vue b/src/views/documentTool/documentSplit/StandardSplitSheet.vue index 364abf39..83f2554b 100644 --- a/src/views/documentTool/documentSplit/StandardSplitSheet.vue +++ b/src/views/documentTool/documentSplit/StandardSplitSheet.vue @@ -13,7 +13,7 @@ export default { components: { StandardResolutionSheet }, mounted () { this.$nextTick(() => { - this.$refs.resolutionSheet.splitId = this.$route.query.id + this.$refs.resolutionSheet.queryParams = { id: this.$route.query.id } this.$refs.resolutionSheet.initClauseFieldList() this.$refs.resolutionSheet.initDetailInfo() }) diff --git a/src/views/enterpriseStandardLibrary/standard/detail/EnterpriseStandardDetail.vue b/src/views/enterpriseStandardLibrary/standard/detail/EnterpriseStandardDetail.vue index a429203c..12ab0249 100644 --- a/src/views/enterpriseStandardLibrary/standard/detail/EnterpriseStandardDetail.vue +++ b/src/views/enterpriseStandardLibrary/standard/detail/EnterpriseStandardDetail.vue @@ -57,8 +57,12 @@