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