| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /***************************【统计分析】***********************************/
- export default {
- statisticalAnalysis: {
- // 本模型下的共通
- common: {
- },
- // 列表搜索表单名称
- searchForm: {
- agvAvailability: {
- statisticalDate: '日期',
- },
- },
- // 按钮的名称
- buttons: {
- operatorPerformance: {
- operatorPerformanceDetail: '查看人员工时详情'
- }
- },
- // 列表的cell名称
- table: {
- // agv工时
- agvAvailability: {
- statisticalDate: '日期',
- statisticalHours: '生产工时汇总(小时)',
- },
- // OEE
- resouceOee: {
- },
- // 工时管理
- operatorPerformance: {
- productLine: '产线',
- statisticalHours: '生产工时汇总(小时)',
- statisticalDate: '月份',
- operatorName: '姓名',
- operatorDept: '部门',
- operatorStatisticalHours: '生产工时汇总(小时)',
- operatorStatisticalDate: '月份',
- }
- },
- // 表单数据名称
- form: {
- },
- // 表单验证规则提示信息
- rules: {
- }
- }
- }
|