From ed126782bcebb26cb170e3357bd39b11affb4e1f Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Thu, 09 Sep 2021 14:09:02 +0800
Subject: [PATCH] 缴费,成绩,派遣记录,派遣单位修改

---
 src/views/securityUnitOperation/operationTable.vue |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/views/securityUnitOperation/operationTable.vue b/src/views/securityUnitOperation/operationTable.vue
index a78a129..0f45c52 100644
--- a/src/views/securityUnitOperation/operationTable.vue
+++ b/src/views/securityUnitOperation/operationTable.vue
@@ -19,7 +19,7 @@
 </template>
 <script>
 import { selectTb } from "../../api/securityUnitOperation/securityUnitOperation";
-import { lazyTreeJu } from "../../api/index/index";
+import { lazyTreeJu,lazyTrees } from "../../api/index/index";
 export default {
   name: "公司运营情况智能分析详情表",
   data() {
@@ -153,6 +153,7 @@
             prop: "enterpriseName",
             search: true,
             searchSpan: 4,
+            width:300,
             display: false
           },
           {
@@ -277,7 +278,7 @@
       });
     },
     getSubOfficeData() {
-      lazyTreeJu().then(res => {
+      lazyTrees().then(res => {
         if (res.data.code === 200) {
           this.tableOption.column.forEach(item => {
             if (item.label == "所属辖区") {
@@ -299,8 +300,8 @@
       }
       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