This commit is contained in:
zhaomeijing
2022-06-17 16:34:12 +08:00
parent 803e16b5df
commit 19f13f22c0
2 changed files with 6 additions and 6 deletions
@@ -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('历史版本呢')
@@ -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')
},