diff --git a/jero-web/src/components/tableCollection/index.vue b/jero-web/src/components/tableCollection/index.vue index 5c395b66b..05f82f1b7 100644 --- a/jero-web/src/components/tableCollection/index.vue +++ b/jero-web/src/components/tableCollection/index.vue @@ -336,8 +336,8 @@ }, getLoginUserType() { let params = { - paramsManifestId: this.paramsManifest.id, - projectId: this.$route.query.id + paramsManifestId: this.$route.query.id, + projectId: this.$route.query.projectId } getAction(this.url.getLoginUserType, params).then((res) => { if (res.success) { @@ -351,7 +351,7 @@ let url if (this.$route.query.it === undefined) { // 页面跳转 - paramsManifestid = this.paramsManifest.id + paramsManifestid = this.$route.query.id url = this.url.tableHeader } else { // 历史版本 @@ -414,7 +414,7 @@ }, getTableListReset() { let params = { - paramsManifestId: this.paramsManifest.id, + paramsManifestId: this.$route.query.id, userTypes: this.currentPersonRole } this.loading = true @@ -437,7 +437,7 @@ let url if (this.$route.query.it === undefined) { // 页面跳转 - paramsManifestid = this.paramsManifest.id + paramsManifestid = this.$route.query.id url = this.url.tableList } else { console.log('历史版本呢') diff --git a/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue b/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue index 718596192..27c691886 100644 --- a/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue +++ b/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue @@ -206,7 +206,7 @@ localStorage.setItem('paramsManifest', JSON.stringify(item)) let newUrl = this.$router.resolve({ path: '/ParameterItemCollection', - query: this.$route.query + query: item, }) window.open(newUrl.href, '_blank') },