rev:解决监控页面报错以及优化堆叠行架任务下发逻辑

This commit is contained in:
2024-08-28 09:49:02 +08:00
parent ca8c658cd7
commit 9b2c62f920
16 changed files with 150 additions and 46 deletions

View File

@@ -141,7 +141,8 @@ export default {
'The_signal_is_successfully_marked': 'The signal is successfully marked',
'Complement_information': 'Complement information',
'agv_task_type': 'task type',
'vehicle_code2': 'Box number'
'vehicle_code2': 'Box number',
'volume_code': 'Sub volume number'
}
}
}

View File

@@ -141,7 +141,8 @@ export default {
'The_signal_is_successfully_marked': 'Sinyal berhasil ditandai',
'Complement_information': 'Informasi pelengkap',
'agv_task_type': 'Jenis tugas',
'vehicle_code2': 'Nomor kotak kayu'
'vehicle_code2': 'Nomor kotak kayu',
'volume_code': 'Nomor volume sub'
}
}
}

View File

@@ -141,7 +141,8 @@ export default {
'The_signal_is_successfully_marked': '信号成功标记',
'Complement_information': '补码信息',
'agv_task_type': '任务类型',
'vehicle_code2': '木箱号'
'vehicle_code2': '木箱号',
'volume_code': '子卷号'
}
}
}

View File

@@ -808,6 +808,9 @@ export default {
} else if (val === 'vehicle_code2') {
const obj = { name: i18n.t('monitor.click.vehicle_code2'), value: data[val] }
this.arr.push(obj)
} else if (val === 'volume_code') {
const obj = { name: i18n.t('monitor.click.volume_code'), value: data[val] }
this.arr.push(obj)
}
}
}