|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="ele-body">
|
|
<div class="ele-body">
|
|
|
- <headerTitle title="领料单详情"></headerTitle>
|
|
|
|
|
|
|
+ <headerTitle title="领料单信息"></headerTitle>
|
|
|
<el-form :model="form" ref="formRef" label-width="120px">
|
|
<el-form :model="form" ref="formRef" label-width="120px">
|
|
|
<el-row :gutter="20">
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="8">
|
|
<el-col :span="8">
|
|
@@ -84,17 +84,23 @@
|
|
|
</el-col>
|
|
</el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
|
|
+ <headerTitle title="领料清单"></headerTitle>
|
|
|
<el-table :data="form.detailList" style="width: 100%">
|
|
<el-table :data="form.detailList" style="width: 100%">
|
|
|
- <el-table-column prop="code" label="领料单号"> </el-table-column>
|
|
|
|
|
- <el-table-column prop="workOrderCode" label="工单编号"> </el-table-column>
|
|
|
|
|
- <el-table-column prop="categoryCode" label="物品编码"> </el-table-column>
|
|
|
|
|
- <el-table-column prop="categoryName" label="物品名称"> </el-table-column>
|
|
|
|
|
- <el-table-column label="数量">
|
|
|
|
|
|
|
+ <!-- <el-table-column prop="code" label="领料单号"> </el-table-column> -->
|
|
|
|
|
+ <el-table-column prop="workOrderCode" width="50" align="center" label="序号">
|
|
|
|
|
+ <template slot-scope="{ row, $index }">
|
|
|
|
|
+ {{ $index + 1 }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column prop="workOrderCode" label="工单编号" align="center"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="categoryCode" label="物品编码" align="center"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="categoryName" label="物品名称" align="center"> </el-table-column>
|
|
|
|
|
+ <el-table-column label="数量" align="center">
|
|
|
<template slot-scope="{ row }">
|
|
<template slot-scope="{ row }">
|
|
|
{{ row.demandQuantity }}/{{ row.unit }}
|
|
{{ row.demandQuantity }}/{{ row.unit }}
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column label="领料仓库">
|
|
|
|
|
|
|
+ <el-table-column label="领料仓库" align="center">
|
|
|
<template slot-scope="{ row }">
|
|
<template slot-scope="{ row }">
|
|
|
{{ row.warehouseName }}
|
|
{{ row.warehouseName }}
|
|
|
</template>
|
|
</template>
|