liuyg
2021-09-08 d356332a2003d00ca803b4e73dc404b9643b60d5
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() {