Commit 51b1efce4605dfdd40d21ad72c64a619fe68217b

Authored by wuxw
1 parent ab1ebb3c

优化账户预存通知bug

src/components/owner/ownerDetailAccount.vue
... ... @@ -40,7 +40,7 @@
40 40 </el-pagination>
41 41 </div>
42 42  
43   - <prestore-account ref="prestoreAccount" @success="_loadOwnerDetailAccountData"></prestore-account>
  43 + <prestore-account ref="prestoreAccount" @success="notify"></prestore-account>
44 44 </div>
45 45 </template>
46 46  
... ... @@ -75,6 +75,9 @@ export default {
75 75 this.ownerDetailAccountInfo.link = link
76 76 this._loadOwnerDetailAccountData(1, this.pagination.pageSize)
77 77 },
  78 + notify(){
  79 + this._loadOwnerDetailAccountData(1, this.pagination.pageSize)
  80 + },
78 81 _loadOwnerDetailAccountData(page, row) {
79 82 const params = {
80 83 communityId: getCommunityId(),
... ...