|
|
@@ -22,7 +22,7 @@
|
|
|
data() {
|
|
|
return {
|
|
|
config: {
|
|
|
- header: ['项目号', '计划数','产出数','良品数', '良率%','达成率%','WIP结存'],
|
|
|
+ header: ['项目号', '计划工序','计划数','产出数','良品数', '良率%','达成率%','WIP结存'],
|
|
|
data: [
|
|
|
],
|
|
|
rowNum: 20, //表格行数
|
|
|
@@ -30,7 +30,7 @@
|
|
|
headerBGC: '#0f1325', //表头
|
|
|
oddRowBGC: '#0f1325', //奇数行
|
|
|
evenRowBGC: '#171c33', //偶数行
|
|
|
- columnWidth: [130,130,130,130,140,140,130],
|
|
|
+ columnWidth: [130,120,120,120,110,110,110,110],
|
|
|
align: ['center','center','center','center','center','center','center'],
|
|
|
carousel: 'page'
|
|
|
},
|
|
|
@@ -64,6 +64,7 @@
|
|
|
const element = dataList[index];
|
|
|
let item = new Array();
|
|
|
item.push("<span class='colorGrass fs-xl'>"+element.v_itemcode+"</span>");
|
|
|
+ item.push("<span class='colorGrass fs-xl'>"+element.v_stepname+"</span>");
|
|
|
item.push("<span class='colorGrass fs-xl'>"+element.v_planqty+"</span>");
|
|
|
item.push("<span class='colorGrass fs-xl'>"+element.v_outqty+"</span>");
|
|
|
item.push("<span class='colorGrass fs-xl'>" + element.v_okqty + "</span>");
|