diff --git a/src/views/system/dept/deptDetail.vue b/src/views/system/dept/deptDetail.vue index 002849d..35c1b38 100644 --- a/src/views/system/dept/deptDetail.vue +++ b/src/views/system/dept/deptDetail.vue @@ -118,44 +118,46 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -215,7 +217,7 @@ loading: false, showConfigDialog: false, deptInfo: {}, - activeTab: '运营区' + activeTab: localStorage.getItem('deptDetailActiveTab') || '运营区' } }, @@ -278,6 +280,16 @@ this.fetchData() }, + watch: { + activeTab(newTab) { + localStorage.setItem('deptDetailActiveTab', newTab) + } + }, + + activated() { + this.activeTab = localStorage.getItem('deptDetailActiveTab') || '运营区' + }, + methods: { async fetchData() { this.loading = true