|
|
|
@ -245,13 +245,25 @@ |
|
|
|
height="400px" |
|
|
|
style="width: 100%; margin-top: 10px;" |
|
|
|
@selection-change="handleSelectionChange"> |
|
|
|
<el-table-column type="selection" width="55" align="center"/> |
|
|
|
<el-table-column type="selection" width="55" align="center" fixed="left" /> |
|
|
|
<el-table-column prop="orderRef1" label="PO号" header-align="center" align="center" width="120"/> |
|
|
|
<el-table-column prop="orderRef2" label="PO行号" header-align="center" align="center" width="60"/> |
|
|
|
<el-table-column prop="partNo" label="产品编码" header-align="center" align="left" min-width="100" show-overflow-tooltip/> |
|
|
|
<el-table-column prop="partDesc" label="产品名称" header-align="center" align="left" min-width="150" show-overflow-tooltip/> |
|
|
|
<el-table-column prop="qty" label="订单数量" header-align="center" align="right" width="80"/> |
|
|
|
<el-table-column prop="waitInspectQty" label="未验货数量" header-align="center" align="right" width="80"/> |
|
|
|
<el-table-column label="此次验货数量" header-align="center" align="center" width="150"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input-number |
|
|
|
v-model="scope.row.inspectQty" |
|
|
|
:min="0" |
|
|
|
:max="scope.row.waitInspectQty || 999999" |
|
|
|
size="mini" |
|
|
|
:controls="false" |
|
|
|
style="width: 100%; box-sizing: border-box;"> |
|
|
|
</el-input-number> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="shipMethod" label="运输方式" header-align="center" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-select v-model="scope.row.shipMethod" placeholder="请选择" size="mini" style="width: 100%; box-sizing: border-box;"> |
|
|
|
@ -280,18 +292,6 @@ |
|
|
|
/> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="此次验货数量" header-align="center" align="center" width="150"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input-number |
|
|
|
v-model="scope.row.inspectQty" |
|
|
|
:min="0" |
|
|
|
:max="scope.row.waitInspectQty || 999999" |
|
|
|
size="mini" |
|
|
|
:controls="false" |
|
|
|
style="width: 100%; box-sizing: border-box;"> |
|
|
|
</el-input-number> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|
</el-form> |
|
|
|
|