零件出库

This commit is contained in:
chenjianan
2019-03-30 15:16:59 +08:00
parent 37172ad4f7
commit 75d66d4545
4 changed files with 10 additions and 8 deletions

View File

@@ -20,8 +20,8 @@
:data="tableData11"
:row-class-name="tableRowClassName"
border
style="width: 100%;max-height: 600px;"
height="600px"
style="width: 100%;max-height: 500px;"
height="500px"
size="mini"
@selection-change="handleSelectionChange1">
<el-table-column :selectable="selectable" align="center" width="35" type="selection"/>
@@ -107,7 +107,7 @@
<!--</el-tooltip>-->
</template>
</el-table-column>
<el-table-column label="可用滞货数量" align="center" min-width="80">
<el-table-column label="可用滞货数量" align="center" min-width="100">
<template slot-scope="scope">
{{ Number(scope.row.滞货数量) }}
</template>
@@ -351,12 +351,12 @@
</el-table-column>
<el-table-column label="机床图号" align="center" min-width="100">
<template slot-scope="scope">
{{ scope.row.机床图号 }}
{{ scope.row.机床图号 || scope.row.基本件机床图号 }}
</template>
</el-table-column>
<el-table-column label="组号" align="center" min-width="70">
<template slot-scope="scope">
{{ scope.row.组号 }}
{{ scope.row.组号 || scope.row.基本件组号 }}
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="100">
@@ -1124,6 +1124,7 @@ export default {
this.supplierExport = row.供应商名称
this.orderExport = row.询价单编号
searchSheetDetail(row.询价单流水号).then(response => {
console.log(response.data)
this.tableData3 = response.data
})
},