From f867c1a87123e0dae74ec36591433082df094b75 Mon Sep 17 00:00:00 2001 From: zhaoxiaoqiang <287285524@qq.com> Date: Tue, 05 Sep 2023 16:25:42 +0800 Subject: [PATCH] 订单选择导出角色管理 --- src/components/table.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/table.vue b/src/components/table.vue index 606de18..0ded5c7 100644 --- a/src/components/table.vue +++ b/src/components/table.vue @@ -1,7 +1,7 @@ <!-- * @Author: zxq * @Date: 2021-09-13 17:29:07 - * @LastEditTime: 2023-08-31 17:14:36 + * @LastEditTime: 2023-09-05 15:30:33 * @LastEditors: zhaoxiaoqiang 287285524@qq.com * @Description: In User Settings Edit * @FilePath: \qyp_finlean_plat\src\components\table.vue @@ -486,6 +486,7 @@ this.$emit("getDataList", body); } else if (this.nameUrl == "roleGetRoleList") { this.tableData = body; + console.log(this.tableData) this.totals = body.total; this.$emit("getDataList", body); } else { @@ -546,13 +547,12 @@ data[key] = data[key].join(','); } } - if(index==1){ if (this.exportUrl.query) { data = { ...data, ...this.exportUrl.query }; } this.exportLoading = true; - request({ + request({ url: this.exportUrl.url, method: "get", params: { ...data }, -- Gitblit v1.8.0