Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m19s
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m19s
This commit is contained in:
commit
23573e00eb
2 changed files with 6 additions and 5 deletions
|
|
@ -203,7 +203,7 @@ async function getList() {
|
|||
.get(
|
||||
config.API.probationPersonalList() +
|
||||
`?status=${
|
||||
commandType.value ? (commandType.value == "C-PM-11" ? 3 : 2) : ""
|
||||
commandType.value ? (commandType.value == "C-PM-11" ? 2 : 3) : ""
|
||||
}&page=${pagination.value.page}&pageSize=${
|
||||
pagination.value.rowsPerPage
|
||||
}&keyword=${filter.value.trim()}`
|
||||
|
|
@ -254,6 +254,7 @@ watch(
|
|||
listCommand.value = data.filter(
|
||||
(v: any) => v.code === "C-PM-11" || v.code === "C-PM-12"
|
||||
);
|
||||
console.log(listCommand.value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -327,11 +327,11 @@ export const useTransferDataStore = defineStore("transferDataStore", () => {
|
|||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "ไม่พ้นการทดลองปฏิบัติหน้าที่ราชการ",
|
||||
value: "พ้นการทดลองปฏิบัติหน้าที่ราชการ",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "พ้นการทดลองปฏิบัติหน้าที่ราชการ",
|
||||
value: "ไม่พ้นการทดลองปฏิบัติหน้าที่ราชการ",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
|
|
@ -411,9 +411,9 @@ export const useTransferDataStore = defineStore("transferDataStore", () => {
|
|||
case 1:
|
||||
return "อยู่ระหว่างการทดลองปฏิบัติหน้าที่ราชการ";
|
||||
case 2:
|
||||
return "ไม่พ้นการทดลองปฏิบัติหน้าที่ราชการ";
|
||||
case 3:
|
||||
return "พ้นการทดลองปฏิบัติหน้าที่ราชการ";
|
||||
case 3:
|
||||
return "ไม่พ้นการทดลองปฏิบัติหน้าที่ราชการ";
|
||||
case 4:
|
||||
return "ยุติการทดลองปฏิบัติหน้าที่ราชการเนื่องจากเปลี่ยนตำแหน่ง";
|
||||
case 5:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue