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