From 4cd36b25025ff369797b2722c0870f3f11d6e62d Mon Sep 17 00:00:00 2001 From: virtuecai Date: Mon, 18 Dec 2023 02:42:36 +0000 Subject: [PATCH] update yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/vue/views/index.vue.vm. excel export download file bug fix Signed-off-by: virtuecai --- .../src/main/resources/codegen/vue/views/index.vue.vm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/vue/views/index.vue.vm b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/vue/views/index.vue.vm index 2328007a0..e2cf95bed 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/vue/views/index.vue.vm +++ b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/vue/views/index.vue.vm @@ -307,7 +307,7 @@ export default { try { this.exportLoading = true; const res = await ${simpleClassName}Api.export${simpleClassName}Excel(this.queryParams); - this.#[[$]]#download.excel(res.data, '${table.classComment}.xls'); + this.#[[$]]#download.excel(res, '${table.classComment}.xls'); } catch { } finally { this.exportLoading = false;