Commit 1b24c5f5 by sawit

เพิ่มเก็บข้อมูลในส่วนทะเบียนหลักสูตร

parent c6c34692
......@@ -88,6 +88,16 @@
<label for="detail_eng" class="ti-form-label mt-2rem">หัวข้อเรื่อง</label>
<textarea type="text" id="detail_eng" class="ti-form-input" rows="4" cols="50"
[(ngModel)]="competencyCourse.select.courseTopic"> </textarea>
<label for="detail_eng" class="ti-form-label mt-2rem">วิธีการ</label>
<textarea type="text" id="detail_eng" class="ti-form-input" rows="4" cols="50"
[(ngModel)]="competencyCourse.select.proceDure"> </textarea>
<label for="detail_eng" class="ti-form-label mt-2rem">คุณสมบัติผู้เข้าร่วม</label>
<textarea type="text" id="detail_eng" class="ti-form-input" rows="4" cols="50"
[(ngModel)]="competencyCourse.select.propertyUser"> </textarea>
<label for="detail_eng" class="ti-form-label mt-2rem">ผู้สอน/วิทยากร</label>
<input type="text" id="detail_eng" class="ti-form-input h-10" [(ngModel)]="competencyCourse.select.lecTurers">
<label for="detail_eng" class="ti-form-label mt-2rem">ระยะเวลา</label>
<input type="text" id="detail_eng" class="ti-form-input h-10" [(ngModel)]="competencyCourse.select.timeLine">
<label class="ti-form-label mt-2rem">Link myLearn</label>
<input type="text" class="ti-form-input h-10" [(ngModel)]="competencyCourse.select.courseLinkMylearn">
</mat-dialog-content>
......
......@@ -6,6 +6,10 @@ export interface CompetencyCourseModel {
courseDetail: string
courseTopic: string
courseLinkMylearn: string
proceDure: string
propertyUser: string
lecTurers: string
timeLine: string
}
export class MyCompetencyCourseModel implements CompetencyCourseModel {
competencyCourseId: string
......@@ -15,6 +19,10 @@ export class MyCompetencyCourseModel implements CompetencyCourseModel {
courseDetail: string
courseTopic: string
courseLinkMylearn: string
proceDure: string
propertyUser: string
lecTurers: string
timeLine: string
constructor(data?: Partial<CompetencyCourseModel>) {
this.competencyCourseId = data?.competencyCourseId || ""
this.tdesc = data?.tdesc || ""
......@@ -23,6 +31,10 @@ export class MyCompetencyCourseModel implements CompetencyCourseModel {
this.courseDetail = data?.courseDetail || ""
this.courseTopic = data?.courseTopic || ""
this.courseLinkMylearn = data?.courseLinkMylearn || ""
this.proceDure = data?.proceDure || ""
this.propertyUser = data?.propertyUser || ""
this.lecTurers = data?.lecTurers || ""
this.timeLine = data?.timeLine || ""
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment