Remove logs

This commit is contained in:
the1812 2020-02-03 16:36:33 +08:00
parent ef4f80216c
commit 726a0927aa
9 changed files with 17 additions and 15 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -38,7 +38,7 @@
"custom-navbar-category.min.js": "4CF38ACE1D0501217266D1E35DFCBF9D5C1D9A3838C54D53C614878BB8CF55E2",
"custom-navbar-component.min.js": "D1B98EDF5C32D19E4A009D2303F69207B35ED35DD06E0F161E7D0BBB313F3C37",
"custom-navbar-favorites-list.min.js": "6321DC8C5EB93E2FEEC0D424EE9B0F4282066018D44DFE66FEAD079F29F7F040",
"custom-navbar-history-list.min.js": "66F85DBCE415E88A9EEAA54110CF7C62E6F4AD7F4090E33667D191CAA890C2EC",
"custom-navbar-history-list.min.js": "BF941B8C43A44E052C20304CF56044DA9D79E02C08AD18B6AD1DAE90E9CDA074",
"custom-navbar-iframe.min.js": "C4EE469EC09655F9FF535ACBBD2A5F7C332DA2081936F8F485F5FB015EBD794B",
"custom-navbar-logo.min.js": "236CCC887A3917A6D4840889B7380B648197765B8CDA27CB233F3F1E3215F7BB",
"custom-navbar-messages.min.js": "D7B315A4D8FD9E2EF9C1E40C1F3CA7EC18C5A87AC7A9410049061A0D851868DE",

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -55,7 +55,7 @@ export const store = (() => {
// }
// },
updateWatchlaterList (state, list) {
console.log('updateWatchlaterList', list)
// console.log('updateWatchlaterList', list)
state.watchlaterList = list
state.watchlaterListCached = true
}

View File

@ -233,7 +233,7 @@ export class HistoryList extends NavbarComponent {
throw new Error(`加载历史记录失败: ${json.message}`)
}
this.timeline = tab.getTimeline(json)
console.log(_.cloneDeep(this.timeline))
// console.log(_.cloneDeep(this.timeline))
} catch (error) {
logError(error)
} finally {
@ -252,9 +252,11 @@ export class HistoryList extends NavbarComponent {
this.updateTimeline()
}
},
async created() {
this.updateTimeline()
},
async mounted() {
this.$el.classList.remove('loading')
this.updateTimeline()
},
})
}