private get dicInfoComp() {
return (type: any, options: any) => {
for (const item of options) {
if (item.dicKey === String(type)) {
return item.dicValue;
}
}
};
}