fix: 去掉功能用例关联测试url多余斜杠 (#8699)

Co-authored-by: chenjianxing <jianxing.chen@fit2cloud.com>
This commit is contained in:
metersphere-bot 2021-12-21 21:05:33 +08:00 committed by GitHub
parent 374d2de7ce
commit 654a6e9484
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -166,7 +166,7 @@ export default {
}
},
buildPagePath(path) {
return path + "/" + this.currentPage + "/" + this.pageSize;
return path + this.currentPage + "/" + this.pageSize;
},
getSelectIds() {
return this.$refs.table.selectIds;

View File

@ -131,7 +131,7 @@ export default {
}
},
buildPagePath(path) {
return path + "/" + this.currentPage + "/" + this.pageSize;
return path + this.currentPage + "/" + this.pageSize;
},
getSelectIds() {
return this.$refs.table.selectIds;

View File

@ -168,7 +168,7 @@ export default {
}
},
buildPagePath(path) {
return path + "/" + this.currentPage + "/" + this.pageSize;
return path + this.currentPage + "/" + this.pageSize;
},
getSelectIds() {
return this.$refs.table.selectIds;