From 5b0106f735d208bb9ca887b996cceb13ffa27796 Mon Sep 17 00:00:00 2001
From: zhengpz <1838927346@qq.com>
Date: Tue, 24 Aug 2021 21:57:25 +0800
Subject: [PATCH] 对接首页接口
---
src/views/securityUnitOperation/economicTable.vue | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/src/views/securityUnitOperation/economicTable.vue b/src/views/securityUnitOperation/economicTable.vue
index 9ca75a8..f548efd 100644
--- a/src/views/securityUnitOperation/economicTable.vue
+++ b/src/views/securityUnitOperation/economicTable.vue
@@ -33,7 +33,7 @@
currentPage: 1,
total: 0
},
- query:{},
+ query: {},
value1: "",
value2: "",
tableData: [
@@ -351,8 +351,11 @@
}
let jurisdiction = object["jurisdiction1"] || "";
let enterpriseName = object["enterpriseName"] || "";
- let obj = { jurisdiction: jurisdiction, enterpriseName: enterpriseName };
- this.onLoad(this.page, obj);
+ this.query = {
+ jurisdiction: jurisdiction,
+ enterpriseName: enterpriseName
+ };
+ this.onLoad(this.page, this.query);
}
},
mounted() {
--
Gitblit v1.9.3