statisticalAnalysis.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /***************************【统计分析】***********************************/
  2. export default {
  3. statisticalAnalysis: {
  4. // 本模型下的共通
  5. common: {
  6. },
  7. // 列表搜索表单名称
  8. searchForm: {
  9. agvAvailability: {
  10. statisticalDate: '日期',
  11. },
  12. },
  13. // 按钮的名称
  14. buttons: {
  15. operatorPerformance: {
  16. operatorPerformanceDetail: '查看人员工时详情'
  17. }
  18. },
  19. // 列表的cell名称
  20. table: {
  21. // agv工时
  22. agvAvailability: {
  23. statisticalDate: '日期',
  24. statisticalHours: '生产工时汇总(小时)',
  25. },
  26. // OEE
  27. resouceOee: {
  28. },
  29. // 工时管理
  30. operatorPerformance: {
  31. productLine: '产线',
  32. statisticalHours: '生产工时汇总(小时)',
  33. statisticalDate: '月份',
  34. operatorName: '姓名',
  35. operatorDept: '部门',
  36. operatorStatisticalHours: '生产工时汇总(小时)',
  37. operatorStatisticalDate: '月份',
  38. }
  39. },
  40. // 表单数据名称
  41. form: {
  42. },
  43. // 表单验证规则提示信息
  44. rules: {
  45. }
  46. }
  47. }