This commit is contained in:
wangshiming
2022-03-30 17:07:03 +08:00
parent c0a087584f
commit e0fc78e849

View File

@ -528,7 +528,7 @@ export class NetworkFreightComponent implements OnInit {
} }
// 应用设置 // 应用设置
settingApp(item?: any) { settingApp(item?: any) {
this.nzModalService.create({ const modalRef = this.nzModalService.create({
nzTitle: '应用设置', nzTitle: '应用设置',
nzContent: DynamicSettingModalComponent, nzContent: DynamicSettingModalComponent,
nzWidth: 900, nzWidth: 900,
@ -539,6 +539,12 @@ export class NetworkFreightComponent implements OnInit {
}, },
nzFooter: null nzFooter: null
}); });
modalRef.afterClose.subscribe((res: boolean) => {
if (res) {
this.resetSF;
this.st.load();
}
})
} }
// 重置账户 // 重置账户
settingPay(item?: any) { settingPay(item?: any) {