From 92490810412908bbe2fe365007d6f7ee68656957 Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Fri, 27 Aug 2021 09:21:12 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.105:10010/r/zhba_regulatory
---
src/views/statisticalQueryManagement/businessStatisticsDetail.vue | 19 ++++++++++---------
1 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/src/views/statisticalQueryManagement/businessStatisticsDetail.vue b/src/views/statisticalQueryManagement/businessStatisticsDetail.vue
index 39257ce..53b4f88 100644
--- a/src/views/statisticalQueryManagement/businessStatisticsDetail.vue
+++ b/src/views/statisticalQueryManagement/businessStatisticsDetail.vue
@@ -22,7 +22,8 @@
import { mapGetters } from "vuex";
import {
selectDis,
- selectFw
+ selectFw,
+ fwList
} from "../../api/statisticalQueryManagement/statisticalQueryManagement";
import { lazyTreeJu } from "../../api/index/index";
export default {
@@ -254,12 +255,12 @@
onLoad(page, params = {}) {
this.loading = true;
let param = {};
- param["jurisdiction"] = params["jurname"] || "";
- param["fid"] = params["fwname"] || "";
- param["deptid"] = this.deptid || "";
+ // param["jurisdiction"] = params["jurname"] || "";
+ // param["fid"] = params["fwname"] || "";
+ param["deptId"] = this.deptid;
param["current"] = page.currentPage;
param["size"] = page.pageSize;
- selectDis(param).then(res => {
+ fwList(param).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.tableData = data.records;
@@ -299,10 +300,10 @@
let mm = urlArr[i].split("=");
object[decodeURIComponent(mm[0])] = decodeURIComponent(mm[1]);
}
- const deptid = object["departmentid"] || "";
- let jurisdiction = object["jurisdiction"] || "";
- let obj = { jurisdiction: jurisdiction, deptid: deptid };
- this.onLoad(this.page, obj);
+ this.deptid = object["departmentid"] || "";
+ // let jurisdiction = object["jurisdiction"] || "";
+ this.query = { deptid: this.deptid };
+ // this.onLoad(this.page, obj);
this.onLoad(this.page, this.query);
}
},
--
Gitblit v1.9.3