Merge remote-tracking branch 'origin/dev-3.1' into dev-3.2
# Conflicts: # nezha-fronted/src/assets/css/common/rightBoxCommon.scss # nezha-fronted/src/assets/css/components/common/project/topology.scss # nezha-fronted/src/components/common/bottomBox/tabs/chartTempPreview.vue # nezha-fronted/src/components/common/bottomBox/tabs/panelTabNew.vue # nezha-fronted/src/components/common/bottomBox/tabs/terminalLogCMDTab.vue # nezha-fronted/src/components/common/bottomBox/tabs/terminalLogRecordTab.vue # nezha-fronted/src/components/common/bottomBox/tabs/terminalLogTab.vue # nezha-fronted/src/components/common/popBox/selectPanel.vue # nezha-fronted/src/components/common/project/popData/Info.vue # nezha-fronted/src/components/common/project/topologyL5.vue # nezha-fronted/src/components/common/rightBox/alertRuleBox.vue # nezha-fronted/src/components/common/rightBox/setting/globalizationBox.vue # nezha-fronted/src/components/page/config/changePin.vue # nezha-fronted/src/components/page/dashboard/explore/editor.vue # nezha-fronted/src/components/page/dashboard/metricPreview.vue # nezha-fronted/src/components/page/dashboard/panel.vue # nezha-fronted/src/permission.js # nezha-fronted/src/store/user.js
This commit is contained in:
@@ -517,6 +517,7 @@ export default {
|
||||
this.getTableData()
|
||||
clearTimeout(this.timer)
|
||||
this.timer = ''
|
||||
this.scrollbarToTop()
|
||||
}, 1000)
|
||||
} else {
|
||||
clearTimeout(this.timer)
|
||||
@@ -524,9 +525,21 @@ export default {
|
||||
this.getTableData()
|
||||
clearTimeout(this.timer)
|
||||
this.timer = ''
|
||||
this.scrollbarToTop()
|
||||
}, 1000)
|
||||
}
|
||||
},
|
||||
scrollbarToTop () {
|
||||
this.$nextTick(() => {
|
||||
const wraps = document.querySelectorAll('.el-table__body-wrapper')
|
||||
wraps.forEach(wrap => {
|
||||
if (wrap) {
|
||||
wrap.scrollTop = 0
|
||||
wrap.scrollLeft = 0
|
||||
}
|
||||
})
|
||||
})
|
||||
},
|
||||
getDcData () {
|
||||
return new Promise(resolve => {
|
||||
this.$get('dc', { pageSize: -1 }).then(response => {
|
||||
@@ -673,7 +686,7 @@ export default {
|
||||
}
|
||||
this.$set(this.searchLabel, 'pageNo', this.pageObj.pageNo)
|
||||
this.$set(this.searchLabel, 'pageSize', this.pageObj.pageSize)
|
||||
if (this.$route.path === '/asset' && !this.titleSearchList.model.children.length) {
|
||||
if (this.$route.path === '/asset' && this.titleSearchList) {
|
||||
this.$set(this.searchLabel, 'statistics', 1)
|
||||
}/* else {
|
||||
delete this.searchLabel.statistics
|
||||
|
||||
Reference in New Issue
Block a user