数字督察一体化平台-前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
368 B

export const colorMapping = {
'工作部署': 'success',
'督察通报': 'warning',
'工作简报': '',
};
export function workDynamicColorMapping(backendData) {
return backendData.map(item => {
const mappedName = colorMapping[item.workType] || "default";
return {
...item,
type: mappedName,
};
});
}