From 5749770d6d8fc6f98e68868f98e00eeb87b633d2 Mon Sep 17 00:00:00 2001
From: zhaoxiaoqiang <287285524@qq.com>
Date: Tue, 05 Sep 2023 17:36:09 +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