init
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
export const domainFeature = [ //Loại domain sếp chưa nghĩ ra
|
||||
{ id: 0, name: 'No' },
|
||||
{ id: 1, name: 'Yes' }
|
||||
];
|
||||
@@ -0,0 +1,4 @@
|
||||
export { status } from './status'
|
||||
export { domainFeature } from './domain-feature'
|
||||
export { typeOption } from './type-option'
|
||||
export { scopeOption } from './scope-option'
|
||||
@@ -0,0 +1,6 @@
|
||||
export const scopeOption = [
|
||||
{ id: 0, title: "Global" },
|
||||
{ id: 1, title: "Site" },
|
||||
{ id: 2, title: "Group" },
|
||||
{ id: 3, title: "User" },
|
||||
];
|
||||
@@ -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" },
|
||||
];
|
||||
@@ -0,0 +1,4 @@
|
||||
export const typeOption = [
|
||||
{ title: "Chính", value: 1 },
|
||||
{ title: "Phụ", value: 2 },
|
||||
];
|
||||
Reference in New Issue
Block a user