From 063906493d14368ddd5b2afef5eec1fdd96f2fa5 Mon Sep 17 00:00:00 2001 From: JUNG YI DAM Date: Fri, 30 Sep 2022 04:04:33 +0000 Subject: [PATCH 1/3] =?UTF-8?q?=ED=99=94=EB=A9=B4=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/modules/beteran/component/home.component.html | 5 +++-- .../beteran/compose/compose/customer-compose.component.html | 2 +- .../beteran/compose/compose/notice-compose.component.html | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/modules/beteran/component/home.component.html b/src/app/modules/beteran/component/home.component.html index 18b325b..701a6a9 100644 --- a/src/app/modules/beteran/component/home.component.html +++ b/src/app/modules/beteran/component/home.component.html @@ -104,8 +104,9 @@
(0) + + + (0)
diff --git a/src/app/modules/beteran/compose/compose/customer-compose.component.html b/src/app/modules/beteran/compose/compose/customer-compose.component.html index acb549a..dae6145 100644 --- a/src/app/modules/beteran/compose/compose/customer-compose.component.html +++ b/src/app/modules/beteran/compose/compose/customer-compose.component.html @@ -46,7 +46,7 @@ class="example-element-row" [class.example-expanded-row]="expandedElement === element" (click)="expandedElement = expandedElement === element ? null : element" - style="cursor: default" + style="cursor: default; font-weight: bold" > Date: Fri, 30 Sep 2022 04:09:33 +0000 Subject: [PATCH 2/3] =?UTF-8?q?=EA=B3=A0=EA=B0=9D=EC=84=BC=ED=84=B0=20?= =?UTF-8?q?=EB=AC=B8=EC=9D=98=ED=95=98=EA=B8=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../customer-registration-compose.component.html | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/src/app/modules/beteran/compose/compose/customer-registration-compose.component.html b/src/app/modules/beteran/compose/compose/customer-registration-compose.component.html index 9689642..80bed4e 100644 --- a/src/app/modules/beteran/compose/compose/customer-registration-compose.component.html +++ b/src/app/modules/beteran/compose/compose/customer-registration-compose.component.html @@ -15,17 +15,11 @@ class="flex flex-col flex-auto p-6 sm:p-8 overflow-y-auto" [formGroup]="composeForm" > -
- - 제목 - - -
- + + 제목 + + + 내용 + + 내용은 필수 입력입니다. +
diff --git a/src/app/modules/beteran/compose/compose/customer-registration-compose.component.ts b/src/app/modules/beteran/compose/compose/customer-registration-compose.component.ts index a24b8fc..ca397eb 100644 --- a/src/app/modules/beteran/compose/compose/customer-registration-compose.component.ts +++ b/src/app/modules/beteran/compose/compose/customer-registration-compose.component.ts @@ -25,7 +25,7 @@ import { MatDialogRef } from '@angular/material/dialog'; ], }) export class CustomerRegistrationComposeComponent implements OnInit { - composeForm!: FormGroup; + customerRegistrationComposeForm!: FormGroup; dataSource = ELEMENT_DATA; columnsToDisplay = ['idx', 'content', 'applicationDate']; @@ -48,9 +48,9 @@ export class CustomerRegistrationComposeComponent implements OnInit { */ ngOnInit(): void { // Create the form - this.composeForm = this._formBuilder.group({ - accountHolder: ['', [Validators.required]], - amount: ['', [Validators.required]], + this.customerRegistrationComposeForm = this._formBuilder.group({ + title: ['', [Validators.required]], + content: ['', [Validators.required]], }); }