diff --git a/jero-web/src/views/documentTools/documentComparison/components/commentList.vue b/jero-web/src/views/documentTools/documentComparison/components/commentList.vue index 6a2b663b4..06eac92d7 100644 --- a/jero-web/src/views/documentTools/documentComparison/components/commentList.vue +++ b/jero-web/src/views/documentTools/documentComparison/components/commentList.vue @@ -26,27 +26,27 @@
- {{item.createBy}} + {{item.name}} {{item.createTime}}
- {{item.comment}} + {{item.content}}
-
-
+
+
- {{val.createBy}} + {{val.name}} {{val.createTime}}
- {{val.comment}} + {{val.content}}
@@ -112,7 +112,7 @@ confirmLoading: false, visibleComment: false, url: { - list: '/compare/sarFileCompareResComment/list', + list: '/compare/sarFileCompareResComment/queryListByInfoId', add: '/compare/sarFileCompareResComment/add', edit: '/compare/sarFileCompareResComment/edit' }, @@ -161,7 +161,7 @@ getList() { this.loading = true getAction(this.url.list, { - infoId: this.$route.query.id, + id: this.$route.query.id, commentContent: this.commentContent }).then((res) => { if (res.success) { @@ -184,7 +184,6 @@ Action = postAction query = { comment: this.formInline.commentContent, - projectLibraryId: this.$route.query.id, infoId: this.$route.query.id } } else if (this.title == this.$t('replyToComments')) {