This commit is contained in:
MoreStrive
2024-05-30 18:06:50 +07:00
parent 8ca31c6b18
commit 2aa5607c48
147 changed files with 5815 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
export const status = [
{ title: "Processing", value: 1, key: "1" },
{ title: "Cancelled", value: 2, key: "2" },
{ title: "Completed", value: 3, key: "3" },
{ title: "Approving", value: 4, key: "4" },
{ title: "Approved", value: 5, key: "5" },
{ title: "Activated", value: 6, key: "6" },
{ title: "Deactivated", value: 7, key: "7" },
{ title: "Suspended", value: 8, key: "8" },
{ title: "Locked", value: 9, key: "9" },
{ title: "Deleted", value: -1, key: "-1" },
];