|
@@ -1,37 +1,37 @@
|
|
|
export const ACTOR_PROFILES = {
|
|
|
user: {
|
|
|
- name: 'User',
|
|
|
- icon: 'icons/user.svg',
|
|
|
- iconBackground: '#4CAF50',
|
|
|
+ name: '用户', // User
|
|
|
+ icon: 'icons/user1.png',
|
|
|
+ iconBackground: '#ffffff',
|
|
|
},
|
|
|
system: {
|
|
|
- name: 'System',
|
|
|
+ name: '系统', // System
|
|
|
icon: 'icons/system.svg',
|
|
|
- iconBackground: '#2196F3',
|
|
|
+ iconBackground: '#ffffff',
|
|
|
},
|
|
|
planner: {
|
|
|
- name: 'Planner',
|
|
|
+ name: '策划员', // Planner
|
|
|
icon: 'icons/planner.svg',
|
|
|
- iconBackground: '#FF9800',
|
|
|
+ iconBackground: '#ffffff',
|
|
|
},
|
|
|
navigator: {
|
|
|
- name: 'Navigator',
|
|
|
+ name: '领航员', // Navigator
|
|
|
icon: 'icons/navigator.svg',
|
|
|
- iconBackground: '#40A9FF',
|
|
|
+ iconBackground: '#ffffff',
|
|
|
},
|
|
|
validator: {
|
|
|
- name: 'Validator',
|
|
|
+ name: '验码者', // Validator
|
|
|
icon: 'icons/validator.svg',
|
|
|
- iconBackground: '#EC407A',
|
|
|
+ iconBackground: '#ffffff',
|
|
|
},
|
|
|
manager: {
|
|
|
- name: 'Manager',
|
|
|
+ name: '经理', // Manager
|
|
|
icon: 'icons/manager.svg',
|
|
|
- iconBackground: '#9C27B0',
|
|
|
+ iconBackground: '#ffffff',
|
|
|
},
|
|
|
evaluator: {
|
|
|
- name: 'Evaluator',
|
|
|
+ name: '评估员', // Evaluator
|
|
|
icon: 'icons/evaluator.svg',
|
|
|
- iconBackground: '#795548',
|
|
|
+ iconBackground: '#ffffff',
|
|
|
},
|
|
|
} as const;
|