+
@@ -109,12 +109,10 @@ export default {
]
}
},
-
mounted() {
this.getInfo()
this.getTableData()
},
-
methods: {
loadNode(node, resolve) {
if (node.level == 0) {
@@ -139,7 +137,6 @@ export default {
}
})
},
-
nodeClick(list, node) {
if (node.data.id) {
this.areaId = node.data.id
@@ -150,7 +147,6 @@ export default {
this.getInfo()
this.getTableData()
},
-
resetSearch() {
this.name = ''
this.page.current = 1
@@ -158,7 +154,6 @@ export default {
this.page.total = 0
this.getTableData()
},
-
getInfo() {
this.instance.post(`/api/appcorp2/getLatestInfo?areaId=${this.areaId}`).then(res => {
if (res?.data) {
@@ -166,7 +161,6 @@ export default {
}
})
},
-
getTableData() {
this.instance.post(`/api/appcorp2/list?areaId=${this.areaId}¤t=${this.page.current}&size=${this.page.size}&name=${this.name}`,).then(res => {
if (res?.data) {
@@ -208,6 +202,7 @@ export default {
}
}
}
+
.ai-table {
height: calc(100% - 44px);
margin-top: 0 !important;
diff --git a/project/oms/apps/statistics/AppCorpStatistics/coDetail.vue b/project/oms/apps/statistics/AppCorpStatistics/coDetail.vue
index 0975ef17..10d39061 100644
--- a/project/oms/apps/statistics/AppCorpStatistics/coDetail.vue
+++ b/project/oms/apps/statistics/AppCorpStatistics/coDetail.vue
@@ -1,10 +1,7 @@