fix: 去掉功能用例关联测试url多余斜杠 (#8699)
Co-authored-by: chenjianxing <jianxing.chen@fit2cloud.com>
This commit is contained in:
parent
374d2de7ce
commit
654a6e9484
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue