แก้ฟิล
This commit is contained in:
parent
3070383469
commit
386e1a9811
2 changed files with 15 additions and 15 deletions
|
|
@ -6,9 +6,9 @@ interface DataResult {
|
|||
disciplinaryFaultLevel: string; //ระดับโทษความผิด
|
||||
disciplinaryCaseFault: string; //กรณีความผิด
|
||||
status: string; //สถานะ
|
||||
disciplineType: string; //สถานะ
|
||||
titleType: string; //สถานะ
|
||||
oc: string; //สถานะ
|
||||
resultDisciplineType: string; //สถานะ
|
||||
resultTitleType: string; //สถานะ
|
||||
resultOc: string; //สถานะ
|
||||
createdAt: Date | null; //วันที่ส่งเรื่องสอบสวน
|
||||
}
|
||||
interface DataResultList {
|
||||
|
|
|
|||
|
|
@ -47,9 +47,9 @@ export const useDisciplineResultStore = defineStore(
|
|||
"disciplinaryFaultLevel",
|
||||
"disciplinaryCaseFault",
|
||||
"createdAt",
|
||||
"disciplineType",
|
||||
"titleType",
|
||||
"oc",
|
||||
"resultDisciplineType",
|
||||
"resultTitleType",
|
||||
"resultOc",
|
||||
"status",
|
||||
]);
|
||||
|
||||
|
|
@ -126,29 +126,29 @@ export const useDisciplineResultStore = defineStore(
|
|||
style: "font-size: 14px",
|
||||
},
|
||||
{
|
||||
name: "disciplineType",
|
||||
name: "resultDisciplineType",
|
||||
align: "left",
|
||||
label: "ประเภทวินัย",
|
||||
sortable: true,
|
||||
field: "disciplineType",
|
||||
field: "resultDisciplineType",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
{
|
||||
name: "titleType",
|
||||
name: "resultTitleType",
|
||||
align: "left",
|
||||
label: "ประเภทของเรื่อง",
|
||||
sortable: true,
|
||||
field: "titleType",
|
||||
field: "resultTitleType",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
{
|
||||
name: "oc",
|
||||
name: "resultOc",
|
||||
align: "left",
|
||||
label: "หน่วยงาน/ส่วนราชการ",
|
||||
sortable: true,
|
||||
field: "oc",
|
||||
field: "resultOc",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
|
|
@ -268,9 +268,9 @@ export const useDisciplineResultStore = defineStore(
|
|||
: "-",
|
||||
status: e.status && convertStatus(e.status),
|
||||
createdAt: e.createdAt && date2Thai(e.createdAt),
|
||||
disciplineType: e.disciplineType ? e.disciplineType : '-',
|
||||
titleType: e.titleType ? e.titleType : '-',
|
||||
oc: e.oc ? e.oc : '-'
|
||||
resultDisciplineType: e.resultDisciplineType ? e.resultDisciplineType : '-',
|
||||
resultTitleType: e.resultTitleType ? e.resultTitleType : '-',
|
||||
resultOc: e.resultOc ? e.resultOc : '-'
|
||||
}));
|
||||
rows.value = datalist;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue