fix bug
This commit is contained in:
@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user