diff --git a/klp-ui/src/components/CoilSelector/data.js b/klp-ui/src/components/CoilSelector/data.js index bb63d575..2d8f8700 100644 --- a/klp-ui/src/components/CoilSelector/data.js +++ b/klp-ui/src/components/CoilSelector/data.js @@ -201,9 +201,9 @@ export const optionalColumns = [ { label: '表面处理', value: 'surfaceTreatmentDesc' }, { label: '镀层质量', value: 'zincLayer' }, { label: '实测长度', value: 'actualLength' }, - { label: '理论长度', value: 'theoreticalLength' }, + { label: '推论长度', value: 'theoreticalLength' }, { label: '实测厚度', value: 'actualThickness' }, - { label: '理论厚度', value: 'theoreticalThickness' }, + { label: '推论厚度', value: 'theoreticalThickness' }, { label: '实测宽度', value: 'actualWidth' }, { label: '毛重', value: 'grossWeight' }, { label: '净重', value: 'netWeight' }, diff --git a/klp-ui/src/views/wms/coil/components/CoilInfo.vue b/klp-ui/src/views/wms/coil/components/CoilInfo.vue index 63c54682..43ad8d73 100644 --- a/klp-ui/src/views/wms/coil/components/CoilInfo.vue +++ b/klp-ui/src/views/wms/coil/components/CoilInfo.vue @@ -67,14 +67,14 @@ export default { label: '长度[m]', children: [ { label: '实测', key: 'actualLength' }, - { label: '理论', key: 'theoreticalLength' } + { label: '推论', key: 'theoreticalLength' } ] }, { label: '厚度[mm]', children: [ { label: '实测', key: 'actualThickness' }, - { label: '理论', key: 'theoreticalThickness' } + { label: '推论', key: 'theoreticalThickness' } ] }, { label: '排产厚度[mm]', key: 'scheduleThickness' }, diff --git a/klp-ui/src/views/wms/report/components/setting/columns.vue b/klp-ui/src/views/wms/report/components/setting/columns.vue index 1c29e46e..86b06051 100644 --- a/klp-ui/src/views/wms/report/components/setting/columns.vue +++ b/klp-ui/src/views/wms/report/components/setting/columns.vue @@ -155,12 +155,12 @@ export default { { label: '镀层质量', value: 'zincLayer' }, { label: '实测长度', value: 'actualLength' }, - { label: '理论长度', value: 'theoreticalLength' }, + { label: '推论长度', value: 'theoreticalLength' }, { label: '长度差值', value: 'lengthDiff' }, { label: '厚度', value: 'computedThickness' }, { label: '实测厚度', value: 'actualThickness' }, - { label: '理论厚度', value: 'theoreticalThickness' }, + { label: '推论厚度', value: 'theoreticalThickness' }, { label: '排产厚度', value: 'scheduleThickness' }, { label: '厚度差值', value: 'thicknessDiff' },