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() { created() {
this.communityId = getCommunityId() this.communityId = getCommunityId()
this.changeTab(this.operateDataLogInfo._currentTab)
}, },
methods: { methods: {
changeTab(tab) { changeTab(tab) {
this.operateDataLogInfo._currentTab = tab this.operateDataLogInfo._currentTab = tab
setTimeout(() => { 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]) { if (this.$refs[tab]) {
this.$refs[tab].open(this.operateDataLogInfo.conditions) this.$refs[tab].open(this.operateDataLogInfo.conditions)
} }