|
|
@ -93,6 +93,20 @@ |
|
|
|
{{ scope.column.label }} |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
prop="OutPutQty" |
|
|
|
label="出库数量" |
|
|
|
width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input size="small" v-model="scope.row.deliverytype" @change="handleEdit(scope.$index, scope.row)"></el-input> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
prop="state" |
|
|
|
:formatter="fieldFormatter" |
|
|
|
label="状态" |
|
|
|
width="100"> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
<div class="table-footer"> |
|
|
|
<!-- 分页控件 style="margin-top: -25px;margin-bottom:-25px;float:right;"--> |
|
|
@ -295,7 +309,7 @@ export default { |
|
|
|
//tempsTabs.push({ label: "收货仓库", prop: "extend2", width: 120 }); |
|
|
|
tempsTabs.push({ label: "寄售库存", prop: "StockQty", width: 100 }); |
|
|
|
tempsTabs.push({ label: "结算数量", prop: "qty", width: 100 }); |
|
|
|
tempsTabs.push({ label: "状态", prop: "state", width: 100 }); |
|
|
|
//tempsTabs.push({ label: "状态", prop: "state", width: 100 }); |
|
|
|
|
|
|
|
return tempsTabs; |
|
|
|
}, |
|
|
|