|
|
|
@ -27,7 +27,7 @@ |
|
|
|
<el-table-column |
|
|
|
prop="customerID" |
|
|
|
header-align="center" |
|
|
|
align="left" |
|
|
|
align="center" |
|
|
|
min-width="60" |
|
|
|
label="客户编码"> |
|
|
|
</el-table-column> |
|
|
|
@ -41,7 +41,7 @@ |
|
|
|
<el-table-column |
|
|
|
prop="partNo" |
|
|
|
header-align="center" |
|
|
|
align="left" |
|
|
|
align="center" |
|
|
|
min-width="60" |
|
|
|
label="物料编码"> |
|
|
|
</el-table-column> |
|
|
|
@ -51,6 +51,9 @@ |
|
|
|
align="right" |
|
|
|
min-width="60" |
|
|
|
label="订单数量"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
{{scope.row.lotSize}}  |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
prop="finishedQty" |
|
|
|
@ -58,6 +61,9 @@ |
|
|
|
align="right" |
|
|
|
min-width="60" |
|
|
|
label="入库数量"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
{{scope.row.finishedQty}}  |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
prop="percentQty" |
|
|
|
@ -66,7 +72,7 @@ |
|
|
|
min-width="60" |
|
|
|
label="完成比例"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
{{scope.row.percentQty}}% |
|
|
|
{{scope.row.percentQty}}%  |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
@ -79,7 +85,7 @@ |
|
|
|
</el-table> |
|
|
|
<el-table |
|
|
|
cell-style="cc" |
|
|
|
height="140" |
|
|
|
height="99" |
|
|
|
:data="tableData2" |
|
|
|
ref="wt_table" |
|
|
|
border |
|
|
|
@ -101,7 +107,7 @@ |
|
|
|
<el-table-column |
|
|
|
prop="partNo" |
|
|
|
header-align="center" |
|
|
|
align="left" |
|
|
|
align="center" |
|
|
|
width="100" |
|
|
|
label="物料编码"> |
|
|
|
</el-table-column> |
|
|
|
@ -122,7 +128,7 @@ |
|
|
|
<el-table-column |
|
|
|
prop="status" |
|
|
|
header-align="center" |
|
|
|
align="left" |
|
|
|
align="center" |
|
|
|
width="60" |
|
|
|
label="状态"> |
|
|
|
</el-table-column> |
|
|
|
@ -171,7 +177,7 @@ |
|
|
|
}, |
|
|
|
mounted () { |
|
|
|
this.$nextTick(() => { |
|
|
|
this.height = window.innerHeight - 221 |
|
|
|
this.height = window.innerHeight - 172 |
|
|
|
}) |
|
|
|
// this.autoRoll() |
|
|
|
}, |
|
|
|
|