- add project
All checks were successful
Build Docker Image / Build Docker Image (push) Successful in 6m12s

This commit is contained in:
x2Skyz
2025-11-21 10:24:49 +07:00
parent 651a120e2b
commit 10aac6060b
13 changed files with 544 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-main-project-add',
standalone: false,
templateUrl: './main-project-add.html',
styleUrl: './main-project-add.css',
})
export class MainProjectAdd {
currentStep: number = 1; // 1 = กรอกข้อมูล, 2 = แนบเอกสาร, 3 = สรุปและส่ง
// ฟังก์ชันสำหรับเปลี่ยนขั้นตอน
goToStep(step: number): void {
this.currentStep = step;
}
}