진행중...
This commit is contained in:
parent
f169ba12bc
commit
4630d9551c
|
@ -1,6 +1,24 @@
|
||||||
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
|
import { Component, Inject, OnInit, ViewEncapsulation } from '@angular/core';
|
||||||
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
|
||||||
import { MatDialogRef } from '@angular/material/dialog';
|
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';
|
||||||
|
|
||||||
|
export interface RegistComposeData {
|
||||||
|
title: string;
|
||||||
|
parentId: string;
|
||||||
|
}
|
||||||
|
export interface RegistComposeResult {
|
||||||
|
parentId: string;
|
||||||
|
siteName: string;
|
||||||
|
signinId: string;
|
||||||
|
password: string;
|
||||||
|
exchangePassword: string;
|
||||||
|
nickname: string;
|
||||||
|
calculateType: string;
|
||||||
|
phoneNumber: string;
|
||||||
|
bankName: string;
|
||||||
|
accountNumber: string;
|
||||||
|
accountHolder: string;
|
||||||
|
}
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-regist-compose',
|
selector: 'app-regist-compose',
|
||||||
|
@ -26,6 +44,7 @@ export class RegistComposeComponent implements OnInit {
|
||||||
*/
|
*/
|
||||||
constructor(
|
constructor(
|
||||||
public matDialogRef: MatDialogRef<RegistComposeComponent>,
|
public matDialogRef: MatDialogRef<RegistComposeComponent>,
|
||||||
|
@Inject(MAT_DIALOG_DATA) public data: RegistComposeData,
|
||||||
private _formBuilder: FormBuilder
|
private _formBuilder: FormBuilder
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user