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