- add project
All checks were successful
Build Docker Image / Build Docker Image (push) Successful in 6m12s
All checks were successful
Build Docker Image / Build Docker Image (push) Successful in 6m12s
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user