NZ-584 feat: overview调整

This commit is contained in:
chenjinsong
2021-04-28 17:48:50 +08:00
parent 6ba59a4e86
commit f91133cbb6
10 changed files with 1318 additions and 377 deletions

View File

@@ -54,13 +54,6 @@ export default {
created () {
const localStorageTitle = JSON.parse(localStorage.getItem('nz-tableTitle-' + localStorage.getItem('nz-username') + '-' + this.tableId))
if (localStorageTitle) {
for (const title of this.originalTableTitle) {
for (const lsTitle of localStorageTitle) {
if (lsTitle.prop === title.prop) {
lsTitle.label = title.label
}
}
}
localStorage.setItem('nz-tableTitle-' + localStorage.getItem('nz-username') + '-' + this.tableId, JSON.stringify(localStorageTitle))
}
},