diff --git a/src/pages/personal/pages/my-collection/components/CollectionStandard.vue b/src/pages/personal/pages/my-collection/components/CollectionStandard.vue index 1f77c4b61..9251b1c8f 100644 --- a/src/pages/personal/pages/my-collection/components/CollectionStandard.vue +++ b/src/pages/personal/pages/my-collection/components/CollectionStandard.vue @@ -53,13 +53,13 @@ - 标题:{{ item.name }} + 标题:{{ item.collectTitle }} - 标题:{{ item.name }} + 标题:{{ item.collectTitle }} - 创建时间:{{getDate(item.createTime)}} + 创建时间:{{getDate(item.creationTime)}} 取消收藏 @@ -127,6 +127,7 @@ export default { this.$http.get('person/personCollect/page', { pageNo: this.page, pageSize: this.$store.getters.userInfo.configContent, + userId: this.$store.getters.userInfo.userId, collectTitle: this.search.name }, { _this: this, diff --git a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue index 4fd7cf277..230417fee 100644 --- a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue @@ -2118,6 +2118,8 @@ export default { this.personCollect.collectTitle = item.standName + ' ( 编号:' + item.standSort + ' ' + item.standNumber + ' )' } this.personCollect.collectType = 'INLAND_STAND' + this.personCollect.id = item.id + this.personCollect.userId = this.$store.getters.userInfo.userId this.$http.postData('person/personCollect', this.personCollect, { _this: this }, res => { diff --git a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue index 00aa92163..65ee0c21f 100644 --- a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue @@ -1910,6 +1910,8 @@ export default { this.personCollect.collectTitle = item.standName + ' ( 编号:' + item.standSort + ' ' + item.standNumber + ' )' } this.personCollect.collectType = 'FOREIGN_STAND' + this.personCollect.id = item.id + this.personCollect.userId = this.$store.getters.userInfo.userId this.$http.postData('person/personCollect', this.personCollect, { _this: this }, res => {