mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2026-01-26 15:38:11 +00:00
28 lines
301 B
TypeScript
28 lines
301 B
TypeScript
export const Status = [
|
|
{
|
|
label: "启用",
|
|
value: 1,
|
|
type: "success"
|
|
},
|
|
{
|
|
label: "禁用",
|
|
value: 0,
|
|
type: "danger"
|
|
}
|
|
];
|
|
|
|
export const LogType = [
|
|
{
|
|
label: "成功",
|
|
value: 1,
|
|
type: "success"
|
|
},
|
|
{
|
|
label: "失败",
|
|
value: 0,
|
|
type: "danger"
|
|
}
|
|
];
|
|
|
|
export * from "./code";
|