12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /***************************【统计分析】***********************************/
- export default {
- cuttingTool: {
- // 本模型下的共通
- common: {
- machineCuttingTool: '产线刀具动态数据',
- customizeCuttingTool: '刀具基础数据',
- onlineStatus: {
- online: '在线',
- offline: '离线',
- }
- },
- // 列表搜索表单名称
- searchForm: {
- machineCuttingtool: {
- resourceName: '设备名称',
- resourceStatus: '在线状态',
- },
- customizeCuttingtool: {
- cuttingtoolName: '刀具名称',
- specifications: '刀具规格',
- deviceId: '安装设备',
- status: '状态',
- },
- },
- // 按钮的名称
- buttons: {
- machineCuttingtool: {
- synCuttingtool: '刀具同步'
- }
- },
- // 列表的cell名称
- table: {
- // 设备刀具管理
- machineCuttingtool: {
- resourceName: '设备名称',
- resourceNo: '设备编号',
- productlineName: '所属产线',
- resourceStatus: '设备连接状态',
- sysTime: '同步时间',
- cuttingToolNum: '刀库刀具数量',
- cuttingToolName: '刀具名称',
- specifications: '刀具规格',
- cuttingToolType: '刀具类型',
- cuttingToolPicture: '刀具图片',
- cuttingToolInstallPicture: '装夹方式',
- cuttingToolMonitorType: '监控方式',
- useageCount: '额定使用寿命',
- surplusCount: '剩余使用寿命',
- earlyWarnning: '预警极限',
- cuttingToolId: '刀具ID',
- sisterCuttingToolId: '姊妹刀号',
- knifeEdgeNumber: '刀沿号',
- cuttingToolPosition: '刀具位置',
- machineCuttingToolType: '刀具类型',
- cuttingToolRadius: '刀具半径',
- cuttingToolLife: '刀具寿命',
- },
- // 刀具基础数据
- customizeCuttingtool: {
- cuttingToolName: '刀具名称',
- specifications: '刀具规格',
- cuttingToolType: '刀具类型',
- cuttingToolPicture: '刀具图片',
- cuttingToolInstallPicture: '装夹方式',
- deviceName: '设备名称',
- status: '启用状态',
- }
- },
- // 表单数据名称
- form: {
- // 刀具基础数据
- customizeCuttingtool: {
- cuttingToolName: '刀具名称',
- specifications: '刀具规格',
- cuttingToolType: '刀具类型',
- deviceId: '安装设备',
- cuttingToolPicture: '刀具图片',
- cuttingToolInstallPicture: '装夹方式',
- cutterNo: '刀位号',
- remark: '备注',
- status: '启用状态',
- }
- },
- // 表单验证规则提示信息
- rules: {
- customizeCuttingtool: {
- remark: '备注长度不能超过255位',
- }
- },
- // 提示或者显示信息
- tips:{
- fileTips: '只能上传图片文件!',
- synSuccess: '刀具同步成功'
- }
- }
- }
|