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

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-01-10 16:06:17 * @Date : 2022-01-10 16:06:17
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-03-22 10:05:15 * @LastEditTime : 2022-04-20 10:00:02
* @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\dynamic-setting\\dynamic-setting-modal\\dynamic-setting-modal.component.ts * @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\dynamic-setting\\dynamic-setting-modal\\dynamic-setting-modal.component.ts
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
*/ */