From 8cbb44a2182a992faeeb0c1fa08e64fb104ae75c Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 30 Nov 2021 14:30:18 +0800
Subject: [PATCH] 武装修改
---
src/views/securityUnitOperation/operationTable.vue | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/views/securityUnitOperation/operationTable.vue b/src/views/securityUnitOperation/operationTable.vue
index a78a129..94e4468 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() {
@@ -89,6 +89,7 @@
searchShow: true,
searchMenuSpan: 6,
index: true,
+ indexLabel:'序号',
viewBtn: true,
dialogClickModal: false,
column: [
@@ -153,6 +154,7 @@
prop: "enterpriseName",
search: true,
searchSpan: 4,
+ width:300,
display: false
},
{
@@ -277,7 +279,7 @@
});
},
getSubOfficeData() {
- lazyTreeJu().then(res => {
+ lazyTrees().then(res => {
if (res.data.code === 200) {
this.tableOption.column.forEach(item => {
if (item.label == "所属辖区") {
@@ -299,8 +301,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