style: 去除打印
This commit is contained in:
@@ -54,9 +54,7 @@ export default {
|
|||||||
watch: {
|
watch: {
|
||||||
from: {
|
from: {
|
||||||
immediate: true,
|
immediate: true,
|
||||||
handler (n) {
|
handler (n) {}
|
||||||
console.log(n === fromRoute.asset)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -43,14 +43,11 @@ export default {
|
|||||||
this.$refs.clickSearch && this.$refs.clickSearch.needMore()
|
this.$refs.clickSearch && this.$refs.clickSearch.needMore()
|
||||||
this.$refs[dataList].$refs.searchInput.sreach_num = 0
|
this.$refs[dataList].$refs.searchInput.sreach_num = 0
|
||||||
this.$refs[dataList].$refs.searchInput.select_list = []
|
this.$refs[dataList].$refs.searchInput.select_list = []
|
||||||
console.log(this.searchMsg.searchLabelList)
|
|
||||||
this.searchMsg.searchLabelList.forEach(searchLabel => {
|
this.searchMsg.searchLabelList.forEach(searchLabel => {
|
||||||
if (this.searchLabel[searchLabel.label]) {
|
if (this.searchLabel[searchLabel.label]) {
|
||||||
let val = this.searchLabel[searchLabel.label]
|
let val = this.searchLabel[searchLabel.label]
|
||||||
console.log(val)
|
|
||||||
if (searchLabel.label === 'projectIds') {
|
if (searchLabel.label === 'projectIds') {
|
||||||
const project = this.$refs.dataList.$refs.searchInput.projectSelect.find(project => val == project.id || val == project.name)
|
const project = this.$refs.dataList.$refs.searchInput.projectSelect.find(project => val == project.id || val == project.name)
|
||||||
console.log(project)
|
|
||||||
val = project.name
|
val = project.name
|
||||||
const valnum = project.id
|
const valnum = project.id
|
||||||
this.$refs[dataList].$refs.searchInput.select_list.push({
|
this.$refs[dataList].$refs.searchInput.select_list.push({
|
||||||
|
|||||||
@@ -152,7 +152,6 @@ export default {
|
|||||||
this.refreshDataFunc()
|
this.refreshDataFunc()
|
||||||
},
|
},
|
||||||
antiShake () {
|
antiShake () {
|
||||||
console.log('aaaaa')
|
|
||||||
if (this.timer) {
|
if (this.timer) {
|
||||||
clearTimeout(this.timer)
|
clearTimeout(this.timer)
|
||||||
this.timer = setTimeout(() => {
|
this.timer = setTimeout(() => {
|
||||||
@@ -160,7 +159,6 @@ export default {
|
|||||||
this.timer = ''
|
this.timer = ''
|
||||||
}, 200)
|
}, 200)
|
||||||
} else {
|
} else {
|
||||||
console.log('123123')
|
|
||||||
this.timer = setTimeout(() => {
|
this.timer = setTimeout(() => {
|
||||||
this.refreshDataFunc()
|
this.refreshDataFunc()
|
||||||
this.timer = ''
|
this.timer = ''
|
||||||
|
|||||||
Reference in New Issue
Block a user