forked from AkkomaGang/admin-fe
rm unnecessary console.log
This commit is contained in:
parent
fa54b927f7
commit
c58bce603b
3 changed files with 0 additions and 3 deletions
|
@ -49,7 +49,6 @@ export default {
|
|||
this.$message('请等待所有图片上传成功 或 出现了网络问题,请刷新页面重新上传!')
|
||||
return
|
||||
}
|
||||
console.log(arr)
|
||||
this.$emit('successCBK', arr)
|
||||
this.listObj = {}
|
||||
this.fileList = []
|
||||
|
|
|
@ -23,7 +23,6 @@ const tagsView = {
|
|||
for (const [i, v] of state.visitedViews.entries()) {
|
||||
if (v.path === view.path) {
|
||||
state.visitedViews.splice(i, 1)
|
||||
console.log('1')
|
||||
break
|
||||
}
|
||||
}
|
||||
|
|
|
@ -169,7 +169,6 @@ export function scrollTo(element, to, duration) {
|
|||
const difference = to - element.scrollTop
|
||||
const perTick = (difference / duration) * 10
|
||||
setTimeout(() => {
|
||||
console.log(new Date())
|
||||
element.scrollTop = element.scrollTop + perTick
|
||||
if (element.scrollTop === to) return
|
||||
scrollTo(element, to, duration - 10)
|
||||
|
|
Loading…
Reference in a new issue