แก้ไขคลิก step ประเมิน

This commit is contained in:
Warunee Tamkoo 2023-12-23 10:38:02 +07:00
parent b984caaa3c
commit 3901310f3d
5 changed files with 97 additions and 32 deletions

View file

@ -6,6 +6,7 @@ import type { QTableProps } from "quasar";
export const useEvaluateDetailStore = defineStore("evaluateDetailStore", () => {
const tabMenu = ref<string>("1");
const step = ref<number>(1);
const currentStep = ref<number>(1);
const titel = ref<string[]>([
"ตรวจสอบคุณสมบัติ",
"จัดเตรียมเอกสารเล่ม 1",
@ -306,6 +307,7 @@ export const useEvaluateDetailStore = defineStore("evaluateDetailStore", () => {
columnProjectsProposed,
pdfSrcStore,
numOfPagesStore,
log
log,
currentStep
};
});