bug fixed
This commit is contained in:
parent
4860a698a5
commit
02db4777a2
|
@ -86,8 +86,10 @@
|
|||
|
||||
<mat-form-field>
|
||||
<mat-label>환전 비밀번호</mat-label>
|
||||
<input matInput [formControlName]="'exchangePw'" />
|
||||
<mat-error *ngIf="composeForm.get('exchangePw')?.hasError('required')">
|
||||
<input matInput [formControlName]="'exchangePassword'" />
|
||||
<mat-error
|
||||
*ngIf="composeForm.get('exchangePassword')?.hasError('required')"
|
||||
>
|
||||
환전 비밀번호 필수 입력입니다.
|
||||
</mat-error>
|
||||
</mat-form-field>
|
||||
|
|
|
@ -76,7 +76,7 @@ export class RegistComposeComponent implements OnInit {
|
|||
siteId: ['', [Validators.required]],
|
||||
username: ['', [Validators.required]],
|
||||
password: ['beteran', [Validators.required]],
|
||||
exchangePw: ['', [Validators.required]],
|
||||
exchangePassword: ['beteran', [Validators.required]],
|
||||
nickname: ['', [Validators.required]],
|
||||
calculateType: ['', [Validators.required]],
|
||||
mobilePhoneNumber: ['', [Validators.required]],
|
||||
|
@ -155,6 +155,7 @@ export class RegistComposeComponent implements OnInit {
|
|||
bank_account.setBankId(bankId);
|
||||
bank_account.setName(accountHolder);
|
||||
bank_account.setAccountNumber(accountNumber);
|
||||
bank_account.setExchangePassword(exchangePassword);
|
||||
|
||||
const member = new CreateMemberRequest();
|
||||
const site = new Site();
|
||||
|
|
Loading…
Reference in New Issue
Block a user