diff --git a/src/pages/match/manage/matchSignup.vue b/src/pages/match/manage/matchSignup.vue index 33f877b..61b7de6 100644 --- a/src/pages/match/manage/matchSignup.vue +++ b/src/pages/match/manage/matchSignup.vue @@ -135,7 +135,7 @@ export default { } }, exportAll() { - location.href = `${this.api.excelExport}/${this.id}/token=${this.token}`; + location.href = `${this.api.excelExport}?${this.id}`; }, exportBatch() { if (this.multipleSelection.length != "") { @@ -145,7 +145,7 @@ export default { }); // return console.log(11,data) - location.href = `${this.api.batchExport}?ids=${data.join(",")}/token=${this.token}`; + location.href = `${this.api.batchExport}?ids=${data.join(",")}`; } else { util.errorMsg("请先选择数据 !"); }