fix bug rows
This commit is contained in:
parent
823fe93528
commit
8e422174a8
34 changed files with 34 additions and 34 deletions
|
|
@ -20,7 +20,7 @@ export const useInsigniaDataStore = defineStore("insignia", () => {
|
|||
const optionsTypeOc = ref<any>([]);
|
||||
const typeOc = ref<string>("");
|
||||
const agency = ref<string>("");
|
||||
const rows = ref<any>([]);
|
||||
const rows = ref<any[]>([]);
|
||||
const listinsignia = ref<any>([]);
|
||||
const typeinsignia = ref<string>("all");
|
||||
const typeinsigniaOptions = ref<any>([{ id: "all", name: "ทั้งหมด" }]);
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ export const useAllocateDataStore = defineStore("insigniaallocate", () => {
|
|||
const insignia = ref<string>("");
|
||||
const insigniaOp = ref<any[]>([{ name: "ทั้งหมด", id: "", type: "" }]);
|
||||
const insigniaType = ref<any>();
|
||||
const rows = ref<any>([]);
|
||||
const rows = ref<any[]>([]);
|
||||
const listInsignia = ref<any>([]);
|
||||
const mainTab = ref<string>("");
|
||||
const type = ref<any[]>([]);
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ export const useBrrowDataStore = defineStore("insigniaBrrow", () => {
|
|||
{ name: "ทั้งหมด", id: "", type: "" },
|
||||
]);
|
||||
const insigniaType = ref<InsigniaType[]>();
|
||||
const rows = ref<any>([]);
|
||||
const rows = ref<any[]>([]);
|
||||
const listInsignia = ref<any>([]);
|
||||
const employeeClass = ref<string>("all");
|
||||
const employeeClassOps = ref<OptionData[]>([
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ export const useResultDataStore = defineStore("insigniaResult", () => {
|
|||
{ name: "ข้าราชการ กทม.สามัญ", id: "officer" },
|
||||
{ name: "ลูกจ้างประจำ", id: "employee" },
|
||||
]);
|
||||
const rows = ref<any>([]);
|
||||
const rows = ref<any[]>([]);
|
||||
const listInsignia = ref<any>([]);
|
||||
const type = ref<any[]>([]);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue