This commit is contained in:
Taric Xin
2022-02-23 15:12:42 +08:00
parent 6ff6a7d2bb
commit 7cbc7b1b2e
4 changed files with 22 additions and 12 deletions

View File

@ -35,7 +35,7 @@ export class FreightConfigComponent implements OnInit {
};
settingAction(item?: any) {
this.modal.create({
const modal = this.modal.create({
nzTitle: '配置',
nzContent: DynamicSettingModalComponent,
nzWidth: 900,
@ -66,6 +66,11 @@ export class FreightConfigComponent implements OnInit {
},
nzFooter: null
});
modal.afterClose.subscribe(res => {
if (res) {
this.st.load(1);
}
});
}
exportList() {