no message

This commit is contained in:
setthawutttty 2023-12-15 14:31:05 +07:00
parent 8b6a90aa06
commit 30ca7d29c4
2 changed files with 20 additions and 11 deletions

View file

@ -61,7 +61,7 @@ export const useAppealComplainStore = defineStore("appealComplainStore", () => {
}
};
const statusTothai = (val: string) => {
function statusTothai(val: string){
switch (val) {
case "NEW":
return "ใหม่";
@ -88,7 +88,8 @@ export const useAppealComplainStore = defineStore("appealComplainStore", () => {
fetchAppealComplain,
rows,
typeOptions,
statusOptions
statusOptions,
statusTothai
};
});