const getSize = (value: any) => {
let text: any = ''
sizeList.forEach((item) => {
if (value == item.id) {
text = item.name
}
})
return text
}