CEC-2920 Aftersales certificates (#225)

* CEC-2920 aftersales certificates

* smells

* smells
This commit is contained in:
John Wu
2022-10-25 11:00:50 -07:00
committed by GitHub
parent 58890ea40e
commit aaf47f4cc7
7 changed files with 231 additions and 31 deletions

29
src/utils/certificates.js Normal file
View File

@@ -0,0 +1,29 @@
export const CertTypes = {
TBOX: "TBOX",
ICC: "ICC",
Charging: "Charging",
Aftersales: "Aftersales",
};
export const CertTypeData = [
{
value: CertTypes.TBOX,
label: "TBOX",
inputlabel: "VIN",
},
{
value: CertTypes.ICC,
label: "ICC",
inputlabel: "VIN",
},
{
value: CertTypes.Aftersales,
label: "Aftersales",
inputlabel: "Service Tool ID",
},
{
value: CertTypes.Charging,
label: "Charging",
inputlabel: "VIN",
},
];