This commit is contained in:
禾几海
2020-08-01 21:43:36 +08:00
parent 7e0b2b0e78
commit 0c8eed9243

View File

@@ -46,14 +46,6 @@ export class LinkComponent implements OnInit {
name: [null, [Validators.required, Validators.maxLength(255)]], name: [null, [Validators.required, Validators.maxLength(255)]],
url: [null, [Validators.required, Validators.pattern(/^([\w-]+\.)+[\w-]+(\/[\w-./?%&=]*)?$/)]] url: [null, [Validators.required, Validators.pattern(/^([\w-]+\.)+[\w-]+(\/[\w-./?%&=]*)?$/)]]
}); });
this.applyFormGroup.patchValue({
desc: '百度',
email: 'a@celess.cn',
iconPath: 'baidu.com',
linkUrl: 'baidu.com',
name: '百度',
url: 'baidu.com'
})
} }
apply() { apply() {
@@ -67,6 +59,7 @@ export class LinkComponent implements OnInit {
this.message.success('提交成功,请稍等,即将为你处理'); this.message.success('提交成功,请稍等,即将为你处理');
this.loading = false; this.loading = false;
this.showModal = false; this.showModal = false;
this.applyFormGroup.reset()
}, },
error: err => { error: err => {
if (err.code === 7200) { if (err.code === 7200) {
@@ -87,6 +80,7 @@ export class LinkComponent implements OnInit {
} }
this.loading = false; this.loading = false;
this.showModal = false; this.showModal = false;
this.applyFormGroup.reset()
} }
}); });
} }