v1.9 修改催缴单bug

This commit is contained in:
wuxw 2025-09-22 09:33:07 +08:00
parent 0f044a88fd
commit 6ca6117a64

View File

@ -150,11 +150,16 @@ export default {
},
created() {
this.communityId = getCommunityId()
this.changeTab(this.operateDataLogInfo._currentTab)
},
methods: {
changeTab(tab) {
this.operateDataLogInfo._currentTab = tab
setTimeout(() => {
if(tab === 'ownerDetailHis') {
this.$refs[tab].open('','','',this.operateDataLogInfo.conditions.logStartTime,this.operateDataLogInfo.conditions.logEndTime,this.operateDataLogInfo.conditions.staffNameLike)
return;
}
if (this.$refs[tab]) {
this.$refs[tab].open(this.operateDataLogInfo.conditions)
}