ปรับ ประเมินบุคคล
This commit is contained in:
parent
864c7c3637
commit
d1861f7a97
7 changed files with 338 additions and 31 deletions
|
|
@ -1,7 +1,13 @@
|
|||
import { defineStore } from "pinia";
|
||||
import { ref } from "vue";
|
||||
import type { QTableProps } from "quasar";
|
||||
|
||||
export const useEvaluateStore = defineStore("evaluateStore", () => {
|
||||
const filterKeyword = ref<string>("");
|
||||
const columns = ref<QTableProps["columns"]>([]);
|
||||
const visibleColumns = ref<string[]>([]);
|
||||
const row = ref<any>();
|
||||
|
||||
const tabMenu = ref<string>("1");
|
||||
const showLoadStatus = ref<boolean>(false);
|
||||
const step = ref<number>(1);
|
||||
|
|
@ -23,6 +29,11 @@ export const useEvaluateStore = defineStore("evaluateStore", () => {
|
|||
const evaluateId = ref<string>("");
|
||||
|
||||
return {
|
||||
filterKeyword,
|
||||
columns,
|
||||
visibleColumns,
|
||||
row,
|
||||
|
||||
tabMenu,
|
||||
step,
|
||||
currentStep,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue