private handleReloadList(params: CompletedData | UnDoneData) {
this.$refs.drawer.close()
if (this.cur === 0) {
this.getList(params, 'unDoneData')
} else {
this.getList(params, 'completedData')
}
}
目前除了用any 还有什么方法 不让 ‘ this.$refs.drawer.close() ’这行代码在tslint下不报错呢?
0 个回复