fix:修改定时时间错误的问题
This commit is contained in:
@@ -97,7 +97,7 @@ export default {
|
|||||||
this.intervalTimer = setInterval(() => {
|
this.intervalTimer = setInterval(() => {
|
||||||
this.$emit('change', this.searchTime)
|
this.$emit('change', this.searchTime)
|
||||||
this.refreshDataFunc()
|
this.refreshDataFunc()
|
||||||
}, val.value * 200)
|
}, val.value * 1000)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (val && val.value != -1) {
|
if (val && val.value != -1) {
|
||||||
@@ -109,7 +109,7 @@ export default {
|
|||||||
}
|
}
|
||||||
this.intervalTimer = setInterval(() => {
|
this.intervalTimer = setInterval(() => {
|
||||||
this.getIntervalData(this.interval.value)
|
this.getIntervalData(this.interval.value)
|
||||||
}, val.value * 200)
|
}, val.value * 1000)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dropdownHandler (show) {
|
dropdownHandler (show) {
|
||||||
|
|||||||
Reference in New Issue
Block a user