export function s8() { return (((1 + Math.random()) * 0x100000000) | 0).toString(16).substring(1); } export function getNameByCode(list, code) { let name = ''; list.forEach((item) => { if (item.dictValue === code) name = item.dictLabel; }); return name; }