From 4c32f70bfb81015af4619d4e984619c57986a0ca Mon Sep 17 00:00:00 2001
From: zhengpz <1838927346@qq.com>
Date: Thu, 11 Nov 2021 12:24:16 +0800
Subject: [PATCH] 改服务对象获取接口

---
 src/views/statisticalQueryManagement/businessStatisticsDetail.vue |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/views/statisticalQueryManagement/businessStatisticsDetail.vue b/src/views/statisticalQueryManagement/businessStatisticsDetail.vue
index 5b6c74e..7fd9579 100644
--- a/src/views/statisticalQueryManagement/businessStatisticsDetail.vue
+++ b/src/views/statisticalQueryManagement/businessStatisticsDetail.vue
@@ -24,7 +24,8 @@
 import {
   selectDis,
   selectFw,
-  fwList
+  fwList,
+  dispatcherUnit
 } from "../../api/statisticalQueryManagement/statisticalQueryManagement";
 import { lazyTreeJu, lazyTrees } from "../../api/index/index";
 export default {
@@ -149,7 +150,7 @@
           {
             label: "保安公司名称",
             width: 300,
-            prop: "tenantName",
+            prop: "deptName",
             display: false
           },
           {
@@ -284,7 +285,8 @@
       param["current"] = page.currentPage;
       param["size"] = page.pageSize;
       param["name"] = params["name"] || "";
-      fwList(param).then(res => {
+
+      dispatcherUnit(param).then(res => {
         const data = res.data.data;
         this.page.total = data.total;
         this.tableData = data.records;

--
Gitblit v1.9.3