diff --git a/nezha-fronted/src/components/common/bottomBox/tabs/cabinetTab.vue b/nezha-fronted/src/components/common/bottomBox/tabs/cabinetTab.vue
index 5c3eca35a..baf85959a 100644
--- a/nezha-fronted/src/components/common/bottomBox/tabs/cabinetTab.vue
+++ b/nezha-fronted/src/components/common/bottomBox/tabs/cabinetTab.vue
@@ -95,8 +95,7 @@ export default {
}
}
},
- created() {
- console.log(this.$route);
+ created () {
},
methods: {
// 切换tab
diff --git a/nezha-fronted/src/components/common/bottomBox/tabs/endpointTabNew.vue b/nezha-fronted/src/components/common/bottomBox/tabs/endpointTabNew.vue
index a7557a9a6..adc51e7c3 100644
--- a/nezha-fronted/src/components/common/bottomBox/tabs/endpointTabNew.vue
+++ b/nezha-fronted/src/components/common/bottomBox/tabs/endpointTabNew.vue
@@ -148,10 +148,8 @@ export default {
this.object.type = this.object.module.type
this.rightBox.editShow = true
})
- console.log(1)
},
closeRightEditBox (refresh) {
- console.log(2)
this.rightBox.editShow = false
if (refresh) {
this.delFlag = true
diff --git a/nezha-fronted/src/components/common/mixin/dataList.js b/nezha-fronted/src/components/common/mixin/dataList.js
index e66f64555..7c8ccc43f 100644
--- a/nezha-fronted/src/components/common/mixin/dataList.js
+++ b/nezha-fronted/src/components/common/mixin/dataList.js
@@ -243,7 +243,6 @@ export default {
if (localStorageTableTitle && (localStorageTableTitle.length > this.$refs.dataTable.tableTitle.length)) {
const arr = localStorageTableTitle.splice(this.$refs.dataTable.tableTitle.length,localStorageTableTitle.length)
this.tools.customTableTitle = this.tools.customTableTitle.concat(arr)
- console.log(this.tools.customTableTitle)
}
if (!this.fromBottom) {
this.getTableData()
diff --git a/nezha-fronted/src/components/common/mixin/table.js b/nezha-fronted/src/components/common/mixin/table.js
index ba621d2ab..042c68293 100644
--- a/nezha-fronted/src/components/common/mixin/table.js
+++ b/nezha-fronted/src/components/common/mixin/table.js
@@ -35,7 +35,6 @@ export default {
break
}
case 'recordTab': {
- console.log(command, row)
this.$emit('showBottomBox', 'recordTab', row)
break
}
diff --git a/nezha-fronted/src/components/common/popBox/guide.vue b/nezha-fronted/src/components/common/popBox/guide.vue
index ac5e961ee..5a04764c4 100644
--- a/nezha-fronted/src/components/common/popBox/guide.vue
+++ b/nezha-fronted/src/components/common/popBox/guide.vue
@@ -289,7 +289,6 @@ export default {
},
watch: {
showDialog (n) {
- console.log(n)
this.visible = n
},
activeIndex (n) {
diff --git a/nezha-fronted/src/components/common/rightBox/alertSilenceBox.vue b/nezha-fronted/src/components/common/rightBox/alertSilenceBox.vue
index 2205b348e..089e580be 100644
--- a/nezha-fronted/src/components/common/rightBox/alertSilenceBox.vue
+++ b/nezha-fronted/src/components/common/rightBox/alertSilenceBox.vue
@@ -345,7 +345,6 @@ export default {
}
},
handleSelect (item) {
- console.log(item)
}
}
}
diff --git a/nezha-fronted/src/components/common/rightBox/batchModifyEndpoint.vue b/nezha-fronted/src/components/common/rightBox/batchModifyEndpoint.vue
index 37b84d9df..a529fd400 100644
--- a/nezha-fronted/src/components/common/rightBox/batchModifyEndpoint.vue
+++ b/nezha-fronted/src/components/common/rightBox/batchModifyEndpoint.vue
@@ -541,7 +541,6 @@ export default {
selectEndpointList: {
immediate: true,
handler (n) {
- console.log(n)
this.endpointTableData = JSON.parse(JSON.stringify(n))
this.endpointTableData.forEach(item => {
item.configs = JSON.parse(item.configs)
diff --git a/nezha-fronted/src/components/common/rightBox/mibBox.vue b/nezha-fronted/src/components/common/rightBox/mibBox.vue
index e741c08a1..7cd954e77 100644
--- a/nezha-fronted/src/components/common/rightBox/mibBox.vue
+++ b/nezha-fronted/src/components/common/rightBox/mibBox.vue
@@ -231,7 +231,6 @@ export default {
this.editMib = JSON.parse(JSON.stringify(n))
if (this.editMib.models) {
this.selectedModels = this.editMib.models.split(',')
- console.log(this.selectedModels)
} else {
this.selectedModels = []
}
diff --git a/nezha-fronted/src/components/common/rightBox/moduleBox.vue b/nezha-fronted/src/components/common/rightBox/moduleBox.vue
index 2da910ba6..eab509f66 100644
--- a/nezha-fronted/src/components/common/rightBox/moduleBox.vue
+++ b/nezha-fronted/src/components/common/rightBox/moduleBox.vue
@@ -453,7 +453,6 @@ export default {
} else {
this.authType = 0
}
- console.log(params)
this.$refs.moduleForm.validate((valid) => {
if (valid) {
this.prevent_opt.save = true
diff --git a/nezha-fronted/src/components/common/table/nzDataList.vue b/nezha-fronted/src/components/common/table/nzDataList.vue
index 0ff3b3089..8831de331 100644
--- a/nezha-fronted/src/components/common/table/nzDataList.vue
+++ b/nezha-fronted/src/components/common/table/nzDataList.vue
@@ -131,7 +131,6 @@ export default {
bottomBoxWindow.listResize(vm, e)
},
showBottomBox (targetTab, row) {
- console.log(targetTab, row)
this.bottomBox.targetTab = targetTab
this.bottomBox.object = JSON.parse(JSON.stringify(row))
this.bottomBox.showSubList = true
diff --git a/nezha-fronted/src/components/layout/header.vue b/nezha-fronted/src/components/layout/header.vue
index 3f38faa25..538e081a9 100644
--- a/nezha-fronted/src/components/layout/header.vue
+++ b/nezha-fronted/src/components/layout/header.vue
@@ -1,5 +1,6 @@
@@ -40,7 +39,6 @@ export default {
},
data () {
return {
- isShrink: localStorage.getItem('nz-left-menu-shrink') == 'true',
systemName: localStorage.getItem('nz-sys-name'),
logo: ''
}
@@ -76,13 +74,12 @@ export default {
},
route () {
return this.$route.path
+ },
+ isShrink () {
+ return this.$store.getters.getIsShrink
}
},
methods: {
- shrink () {
- this.isShrink = !this.isShrink
- localStorage.setItem('nz-left-menu-shrink', this.isShrink)
- },
jump (route) {
if (route === this.route) {
this.refresh()
@@ -186,32 +183,6 @@ export default {
width: 6px;
height: 14px;
}
-
- .left-menu--pin {
- position: fixed;
- height: 20px;
- width: 20px;
- line-height: 20px;
- font-size: 20px;
- font-weight: 100;
- color: #999999;
- transition: all .4s;
- i {
- transform: rotateY(0);
- transition: transform .4s;
- }
- i.icon-reverse {
- transform: rotateY(180deg);
- }
- }
- .left-menu--pin-normal{
- top: 15px;
- left: 250px;
- }
- .left-menu--pin-reverse{
- top: 15px;
- left: 74px;
- }
>.el-menu.header-logo {
border-right: none;
>.el-menu-item {
diff --git a/nezha-fronted/src/components/page/config/system.vue b/nezha-fronted/src/components/page/config/system.vue
index 1c6e46e52..42da05673 100644
--- a/nezha-fronted/src/components/page/config/system.vue
+++ b/nezha-fronted/src/components/page/config/system.vue
@@ -768,7 +768,6 @@ export default {
},
handleLogoChange (file, fileList) {
const imageTypes = ['image/jpeg', 'image/jpg', 'image/png']
- console.log(file.raw.type)
const isImage = imageTypes.some(t => file.raw.type === t)
const isLt2M = file.raw.size / 1024 / 1024 < 2
diff --git a/nezha-fronted/src/components/page/config/user.vue b/nezha-fronted/src/components/page/config/user.vue
index 1539a4049..21c00ccfa 100644
--- a/nezha-fronted/src/components/page/config/user.vue
+++ b/nezha-fronted/src/components/page/config/user.vue
@@ -122,7 +122,6 @@ export default {
pin: '',
pinChange: ''
}
- console.log(this.object);
this.rightBox.show = true
}
})
diff --git a/nezha-fronted/src/components/page/monitor/project/projectList.vue b/nezha-fronted/src/components/page/monitor/project/projectList.vue
index cb57e0574..41e5a5eff 100644
--- a/nezha-fronted/src/components/page/monitor/project/projectList.vue
+++ b/nezha-fronted/src/components/page/monitor/project/projectList.vue
@@ -127,7 +127,6 @@ export default {
computed: {
},
created () {
- console.log(this.$store.state.currentProject)
},
mounted () {
},
diff --git a/nezha-fronted/src/store/index.js b/nezha-fronted/src/store/index.js
index 241329173..9c12d9b38 100644
--- a/nezha-fronted/src/store/index.js
+++ b/nezha-fronted/src/store/index.js
@@ -33,7 +33,8 @@ const store = new Vuex.Store({
overViewProject: {},
dcDataRefresh: false,
showTopoScreen: false,
- logo: ''
+ logo: '',
+ isShrink: localStorage.getItem('nz-left-menu-shrink') == 'true'
},
getters: {
getLinkData (state) {
@@ -63,7 +64,10 @@ const store = new Vuex.Store({
getLogo (state) {
console.log('get logo', state)
return state.logo
- }
+ },
+ getIsShrink (state) {
+ return state.isShrink
+ },
},
mutations: {
/* 监听对象变化,用于顶部菜单与底部内容的同步 */
@@ -138,6 +142,10 @@ const store = new Vuex.Store({
setLogo (state, logo) {
console.log('set log', logo)
state.logo = logo
+ },
+ isShrink (state) {
+ state.isShrink = !state.isShrink
+ localStorage.setItem('nz-left-menu-shrink', state.isShrink)
}
},
actions: {