bug修改

This commit is contained in:
zhaoxiao
2021-10-12 17:30:59 +08:00
parent 9f0e6ebc88
commit e5b6fa8ec1
23 changed files with 221 additions and 129 deletions
@@ -173,6 +173,12 @@ export default {
scopedSlots: { customRender: 'action' }
}
],
queryParam: {
year: new Date().getFullYear().toString()
},
lastQueryParam: {
year: new Date().getFullYear().toString()
},
operateData: [] // 进行操作权限校验时使用的数据
}
},
@@ -292,7 +298,16 @@ export default {
canOperate: record.canOperate
}
})
}
},
searchReset() {
this.lastQueryParam = {
year: new Date().getFullYear().toString()
}
this.queryParam = {
year: new Date().getFullYear().toString()
}
this.loadData(1)
},
}
}
</script>