This commit is contained in:
wangshiming
2022-04-20 10:00:14 +08:00
parent 3f76852e2f
commit f5b9bb5bca
2 changed files with 8 additions and 2 deletions

View File

@ -516,7 +516,7 @@ export class NetworkFreightComponent implements OnInit {
}
// 基础设置
settingAction(item?: any) {
this.nzModalService.create({
const modalRef = this.nzModalService.create({
nzTitle: '系统配置',
nzContent: DynamicSettingModalComponent,
nzWidth: 900,
@ -526,6 +526,12 @@ export class NetworkFreightComponent implements OnInit {
},
nzFooter: null
});
modalRef.afterClose.subscribe((res: boolean) => {
if (res) {
this.resetSF;
this.st.load();
}
})
}
// 应用设置
settingApp(item?: any) {