|
|
@@ -349,6 +349,9 @@
|
|
|
:prop="column.prop"
|
|
|
:label="column.label"
|
|
|
:width="column.width"
|
|
|
+ :align='column.left'
|
|
|
+ :fixed='column.fixed'
|
|
|
+ :sortable="column.sortable"
|
|
|
show-overflow-tooltip="true"
|
|
|
sortable
|
|
|
/>
|
|
|
@@ -473,30 +476,30 @@ getSideData()
|
|
|
|
|
|
// 表格数据
|
|
|
const tableCols1 = [
|
|
|
- { label: '超损工单', prop: 'csgd', width: '120' },
|
|
|
- { label: '工单编号', prop: 'Gd_gdbh', width: '120' },
|
|
|
- { label: '印件号', prop: 'jjcp_yjno', width: '100' },
|
|
|
- { label: '联数', prop: 'yj_ls', width: '80' },
|
|
|
- { label: '产品代号', prop: '成品编码', width: '150' },
|
|
|
- { label: '产品名称', prop: '成品名称', width: '250' },
|
|
|
- { label: '实际投料', prop: '实际投料', width: '120' },
|
|
|
- { label: '计量单位', prop: '计量单位', width: '120' },
|
|
|
- { label: '入仓日期', prop: 'warehousing_date', width: '120' },
|
|
|
- { label: '入仓数量', prop: 'warehousing_num', width: '120' },
|
|
|
- { label: '目标合格率', prop: 'target_rate', width: '120' },
|
|
|
- { label: '实际合格率', prop: 'real_rate', width: '120' },
|
|
|
- { label: '奖惩系数', prop: 'reward_rate', width: '120' },
|
|
|
+ { label: '超损工单', prop: 'csgd', width: '110' ,sortable:'sortable'},
|
|
|
+ { label: '工单编号', prop: 'Gd_gdbh', width: '110',sortable:'sortable',fixed:'fixed',align:'left'},
|
|
|
+ { label: '印件号', prop: 'jjcp_yjno', width: '95' ,sortable:'sortable'},
|
|
|
+ { label: '联数', prop: 'yj_ls', width: '80' ,sortable:'sortable'},
|
|
|
+ { label: '产品代号', prop: '成品编码', width: '120' ,sortable:'sortable'},
|
|
|
+ { label: '产品名称', prop: '成品名称', width: '250' ,sortable:'sortable'},
|
|
|
+ { label: '实际投料', prop: '实际投料', width: '115' ,sortable:'sortable'},
|
|
|
+ { label: '计量单位', prop: '计量单位', width: '115' ,sortable:'sortable'},
|
|
|
+ { label: '入仓日期', prop: 'warehousing_date', width: '110' ,sortable:'sortable'},
|
|
|
+ { label: '入仓数量', prop: 'warehousing_num', width: '110' ,sortable:'sortable'},
|
|
|
+ { label: '目标合格率', prop: 'target_rate', width: '120' ,sortable:'sortable'},
|
|
|
+ { label: '实际合格率', prop: 'real_rate', width: '120' ,sortable:'sortable'},
|
|
|
+ { label: '奖惩系数', prop: 'reward_rate', width: '110' ,sortable:'sortable'},
|
|
|
// { label: '奖罚金额合计', prop: '', width: '140' },
|
|
|
- { label: '废品合计', prop: '废品合计', width: '120' },
|
|
|
- { label: '工单无形损', prop: '工单无形损', width: '120' },
|
|
|
- { label: '材料废', prop: '材料废', width: '120' },
|
|
|
- { label: '零头处理', prop: '零头处理', width: '120' },
|
|
|
- { label: '处发废', prop: '外发废', width: '120' },
|
|
|
- { label: '外摊废', prop: '分摊废', width: '120' },
|
|
|
- { label: '工单计划损耗', prop: '工单计划损耗', width: '140' },
|
|
|
- { label: '工单制程废', prop: '', width: '120' },
|
|
|
- { label: '工单检验废', prop: '工单质检废', width: '120' },
|
|
|
- { label: '年月', prop: 'date', width: '120' },
|
|
|
+ { label: '废品合计', prop: '废品合计', width: '120' ,sortable:'sortable'},
|
|
|
+ { label: '工单无形损', prop: '工单无形损', width: '120',sortable:'sortable' },
|
|
|
+ { label: '材料废', prop: '材料废', width: '120' ,sortable:'sortable'},
|
|
|
+ { label: '零头处理', prop: '零头处理', width: '120',sortable:'sortable' },
|
|
|
+ { label: '处发废', prop: '外发废', width: '120',sortable:'sortable' },
|
|
|
+ { label: '外摊废', prop: '分摊废', width: '120' ,sortable:'sortable'},
|
|
|
+ { label: '工单计划损耗', prop: '工单计划损耗', width: '140',sortable:'sortable' },
|
|
|
+ { label: '工单制程废', prop: '', width: '120',sortable:'sortable' },
|
|
|
+ { label: '工单检验废', prop: '工单质检废', width: '120',sortable:'sortable' },
|
|
|
+ { label: '年月', prop: 'date', width: '120' ,sortable:'sortable'},
|
|
|
]
|
|
|
const tableCols2 = [
|
|
|
{ label: '工单编号', prop: 'Gy0_gdbh', width: '120' },
|