|
|
@@ -39,7 +39,7 @@
|
|
|
<el-table-column align="left" label="物料名称" prop="物料名称" width="160"/>
|
|
|
<el-table-column align="left" label="领料人员" prop="领料人员" width="160"/>
|
|
|
<el-table-column align="left" label="操作机台" prop="操作机台" width="160"/>
|
|
|
- <el-table-column align="left" label="日期" prop="日期:" width="160"/>
|
|
|
+ <el-table-column align="left" label="日期" prop="日期" width="160"/>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
|
|
|
@@ -59,12 +59,12 @@
|
|
|
<!-- <el-table-column type="selection" width="30" /> -->
|
|
|
<el-table-column align="left" label="订单编号" prop="订单编号" width="160" />
|
|
|
<el-table-column align="left" label="款号" prop="款号" width="100"/>
|
|
|
- <el-table-column align="left" label="出库单" prop="出库单" width="160"/>
|
|
|
+ <el-table-column align="left" label="出库单" prop="出库单据编号" width="160"/>
|
|
|
<el-table-column align="left" label="物料名称" prop="物料名称" width="160"/>
|
|
|
<el-table-column align="left" label="数量" prop="数量" width="160"/>
|
|
|
<el-table-column align="left" label="领料人员" prop="领料人员" width="160"/>
|
|
|
<el-table-column align="left" label="操作机台" prop="操作机台" width="160"/>
|
|
|
- <el-table-column align="left" label="日期" prop="日期:" width="160"/>
|
|
|
+ <el-table-column align="left" label="日期" prop="日期" width="160"/>
|
|
|
</el-table>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
@@ -173,6 +173,7 @@ const handleNodeClick = async (node) => {
|
|
|
const listtableData = reactive([])
|
|
|
//表格行点击
|
|
|
const tableRowClick = async (row)=>{
|
|
|
+ listtableData.splice(0, listtableData.length);//清空表格
|
|
|
console.log(row['出库单'])
|
|
|
const response = await ReceiptDetail({receipt:row['出库单']});
|
|
|
console.log(response)
|