bugfix
This commit is contained in:
@ -73,3 +73,43 @@ export const database_type_dict = [
|
||||
elTagType: "",
|
||||
},
|
||||
];
|
||||
|
||||
export const tenantModeDict = [
|
||||
{
|
||||
label: "字段",
|
||||
value: "1",
|
||||
elTagType: "primary",
|
||||
},
|
||||
{
|
||||
label: "数据库",
|
||||
value: "2",
|
||||
elTagType: "warning",
|
||||
},
|
||||
{
|
||||
label: "数据源",
|
||||
value: "3",
|
||||
elTagType: "success",
|
||||
},
|
||||
];
|
||||
export const tenantStatusDict = [
|
||||
{
|
||||
label: "正常",
|
||||
value: "1",
|
||||
elTagType: "success",
|
||||
},
|
||||
{
|
||||
label: "过期",
|
||||
value: "2",
|
||||
elTagType: "warning",
|
||||
},
|
||||
{
|
||||
label: "异常",
|
||||
value: "3",
|
||||
elTagType: "danger",
|
||||
},
|
||||
{
|
||||
label: "禁用",
|
||||
value: "0",
|
||||
elTagType: "warning",
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user