| | |
| | | { |
| | | label: '工序版次', |
| | | prop: 'processEdition', |
| | | width: 80, |
| | | width: 82, |
| | | render: ({ row }) => { |
| | | return h('span', {}, row?.variables?.processEdition || ''); |
| | | } |
| | |
| | | { |
| | | label: '任务车间', |
| | | prop: 'workshop', |
| | | width: 80, |
| | | width: 82, |
| | | render: ({ row }) => { |
| | | return h('p',{'class': 'margin0'}, row?.variables?.workshop || ''); |
| | | } |
| | | }, |
| | | { |
| | | label: '机床', |
| | | prop: '', |
| | | render: ({ row }) => { |
| | | return h('p', |
| | | { |
| | | attrs: {}, |
| | | class: {}, |
| | | style: {}, |
| | | }, row?.variables?.machineCode) |
| | | }, |
| | | renderForm: ({ row }) => { |
| | | return h('span', { |
| | | attrs: {}, |
| | | class: {}, |
| | | style: {}, |
| | | }, row?.variables?.machineCode || ''); |
| | | } |
| | | }, |
| | | { |
| | | label: '过程卡号', |
| | | prop: '', |
| | | width: 80, |
| | | width: 82, |
| | | render: ({ row }) => { |
| | | return h('p',{'class': 'margin0'}, row?.variables?.processCard || ''); |
| | | }, |
| | | }, |
| | | |
| | | { |
| | | label: '临时更改单', |
| | | prop: '', |
| | | width: 95, |
| | | render: ({ row }) => { |
| | | return h('p',{'class': 'margin0'}, row?.variables?.deviation || ''); |
| | | }, |
| | | }, |
| | | { |
| | | label: '产品型号', |
| | | prop: '', |
| | |
| | | } |
| | | }, |
| | | |
| | | { |
| | | label: '机床', |
| | | prop: '', |
| | | render: ({ row }) => { |
| | | return h('p', |
| | | { |
| | | attrs: {}, |
| | | class: {}, |
| | | style: {}, |
| | | }, row?.variables?.machineCode) |
| | | }, |
| | | renderForm: ({ row }) => { |
| | | return h('span', { |
| | | attrs: {}, |
| | | class: {}, |
| | | style: {}, |
| | | }, row?.variables?.machineCode || ''); |
| | | } |
| | | }, |
| | | |
| | | { |
| | | label: '创建时间', |
| | | prop: 'processCreateTime', |
| | |
| | | ...this.query, |
| | | endTimeBegin: this.query?.endTime?.[0] || undefined, |
| | | endTimeEnd: this.query?.endTime?.[1] || undefined, |
| | | drawingNo: params.drawingNo || '', |
| | | //drawingNo: params.drawingNo || '', |
| | | }; |
| | | this.loading = true; |
| | | getList(page.currentPage, page.pageSize, Object.assign(data, params)).then(res => { |