diff --git a/public/images/1.png b/public/images/1.png index 3ed15e3..484a9f9 100644 Binary files a/public/images/1.png and b/public/images/1.png differ diff --git a/src/assets/images/iasf.png b/src/assets/images/iasf.png index d19b092..1610adc 100644 Binary files a/src/assets/images/iasf.png and b/src/assets/images/iasf.png differ diff --git a/src/assets/images/iasf2.png b/src/assets/images/iasf2.png index afbe153..937f44f 100644 Binary files a/src/assets/images/iasf2.png and b/src/assets/images/iasf2.png differ diff --git a/src/assets/images/tel1.png b/src/assets/images/tel1.png new file mode 100644 index 0000000..056905b Binary files /dev/null and b/src/assets/images/tel1.png differ diff --git a/src/assets/images/userSharing/1.png b/src/assets/images/userSharing/1.png deleted file mode 100644 index cb8452f..0000000 Binary files a/src/assets/images/userSharing/1.png and /dev/null differ diff --git a/src/i18n/index.js b/src/i18n/index.js index 35bf168..5e6b648 100644 --- a/src/i18n/index.js +++ b/src/i18n/index.js @@ -43,9 +43,7 @@ export const messages = { selectDate: '选择日期', pleaseEnterPatentOfficer: '请输入专利名称/发明人姓名/申请号', patentName: '专利名称', - patentClassification: '专利类别', ApplicationNumber: '申请号', - ApplicationDate: '申请日期', AuthorizationDate: '授权日期', inventor: '发明人', Pleaseselect: '请选择', @@ -70,6 +68,7 @@ export const messages = { ActivityIntroduction: '活动简介', back: '返回', comming: '暂无更多信息,敬请期待。', + nothing: '没有找到您搜索的内容,您可尝试搜索其他关键词。', } }, 'en': { @@ -110,14 +109,12 @@ export const messages = { pleaseSelectThePublicationTime: 'Please select the publication time', PleaseEnterThePaperName: 'Please enter the paper title/journal name/author name', journalName: 'JournalName', - patentClassification: 'PatentClassification', applicationDate: 'ApplicationDate', selectDate: 'SelectDate', pleaseEnterPatentOfficer: 'Please enter the patent name/inventor name/application number', patentName: 'Patent title', patentClassification: 'Patent classification', ApplicationNumber:'Application number', - ApplicationDate: 'Application date', AuthorizationDate: 'Authorization Date', inventor: 'Inventor', Pleaseselect: 'Please select', @@ -142,6 +139,7 @@ export const messages = { ActivityIntroduction: 'Activity Introduction', back: 'Back', comming: 'coming soone', + nothing: `We couldn't find the content you were searching for. You can try searching for other keywords.`, } } }; \ No newline at end of file diff --git a/src/layouts/footer/index.vue b/src/layouts/footer/index.vue index 080aea8..ba5766b 100644 --- a/src/layouts/footer/index.vue +++ b/src/layouts/footer/index.vue @@ -47,6 +47,7 @@

Copyright ©2002- 2021

diff --git a/src/layouts/header/index.vue b/src/layouts/header/index.vue index 7f427ac..aeb0d62 100644 --- a/src/layouts/header/index.vue +++ b/src/layouts/header/index.vue @@ -226,7 +226,7 @@ export default { this.modelType = !this.modelType if (this.title) { this.showSearch = false - this.$router.push(`/column/result`) + this.$router.push(`/column/result?siteId=${this.site}`) } }, // 更改右侧盒子样式 diff --git a/src/layouts/navbar/index.vue b/src/layouts/navbar/index.vue index 16dd613..27191ba 100644 --- a/src/layouts/navbar/index.vue +++ b/src/layouts/navbar/index.vue @@ -45,7 +45,8 @@ export default { parentId: 0, otherMenus: [], // 当导航栏条目大于10条,则在pc端显示更多的按钮 - showMoreBtns: false + showMoreBtns: false, + lastSite: 1, }; }, components: { @@ -61,10 +62,11 @@ export default { '$route' () { const { siteId } = this.$route.query // siteId有变化,则重新获取栏目,并更改store - if (siteId && siteId != this.site) { + if (siteId && (siteId != this.site || this.lastSite != this.site)) { this.getColumn() this.setSite(siteId) } + this.lastSite = siteId this.handleColor() }, isHome () { diff --git a/src/main.js b/src/main.js index 87d0911..cef49b5 100644 --- a/src/main.js +++ b/src/main.js @@ -39,7 +39,6 @@ Vue.use(ElementUI, { }); router.beforeEach((to, from, next) => { - console.log("🚀 ~ file: permission.js:5 ~ router.beforeEach ~ to:", Util.getLang()) VueI18n.locale = Util.getLang() next() }) diff --git a/src/mixins/estate/index.js b/src/mixins/estate/index.js index 250afec..7aee152 100644 --- a/src/mixins/estate/index.js +++ b/src/mixins/estate/index.js @@ -19,7 +19,6 @@ export default { data : data[data.length - 1][data[data.length - 1].state ? 'theEditedJson' : 'jsonBeforeEditing']) this.modules = json - console.log("🚀 ~ file: index.vue ~ line 180 ~ this.$post ~ json", json) } }).catch(err => {}) }, diff --git a/src/pages/article/activity.vue b/src/pages/article/activity.vue index 358ce13..4e4e3bf 100644 --- a/src/pages/article/activity.vue +++ b/src/pages/article/activity.vue @@ -1,5 +1,10 @@