firmware manage

This commit is contained in:
2023-03-18 14:53:54 +08:00
parent 53280f0160
commit 6f93d0b8de
5 changed files with 983 additions and 12 deletions

View File

@ -32,3 +32,18 @@ export const isMonitor = new Map([
[0, "是"],
[1, "否"],
]);
export const productStatusMap = [[1, ""]];
export const firmwareLatestTypeOptions = [
{
label: "否",
value: 0,
tag: "danger",
},
{
label: "是",
value: 1,
tag: "success",
},
];