| | |
| | | |
| | | // 表格配置 |
| | | const columns = ref([ |
| | | { type: 'seq', title: '序号', width: 60 }, |
| | | /* { type: 'seq', title: '序号', width: 60 },*/ |
| | | { |
| | | title: '工单号', |
| | | field: 'workOrderNo', |
| | |
| | | }, |
| | | { |
| | | title: '工序号', |
| | | field: 'routeProcessNumber', |
| | | field: 'routeProcessNumberTxt', |
| | | width: 150, |
| | | }, |
| | | { |
| | | title: '当前工序号', |
| | | field: 'currentProcessNumber', |
| | | field: 'currentProcessNumberTxt', |
| | | width: 150, |
| | | }, |
| | | { |
| | |
| | | listValue.forEach(listItem => { |
| | | listItem[`processPlanStartDaytxt`]= listItem.warning? `<font color="red">${listItem.processPlanStartDay}</font>` :listItem.processPlanStartDay; |
| | | listItem[`processPlanEndDaytxt`]= listItem.warning? `<font color="red">${listItem.processPlanEndDay}</font>` :listItem.processPlanEndDay; |
| | | listItem[`routeProcessNumberTxt`]= listItem.routeProcessNumber.toString().padStart(3, '0'); |
| | | listItem[`currentProcessNumberTxt`]= listItem.currentProcessNumber.toString().padStart(3, '0'); |
| | | |
| | | |
| | | }); |
| | | aps_plate_process_statList.value =listValue |
| | | debugger; |