|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div v-if="!loading" class="page-container column-container">
|
|
|
- <el-form class="list-search" style="" :model="lot" ref="queryRef" :inline="true">
|
|
|
+ <el-form class="list-search" style="" :model="lot" ref="queryRef" :inline="true" >
|
|
|
<el-row style="margin-top: 10px">
|
|
|
<el-form-item class="bold-large">
|
|
|
<span>{{ "批次号:" }}</span>
|
|
@@ -32,6 +32,11 @@
|
|
|
<span>{{ lot.productionPlanDetail.productionPlanNo }}</span>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="产品编码" class="custom-label">
|
|
|
+ <span>{{ lot.product.productCode }}</span>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="序号" class="custom-label">
|
|
@@ -40,22 +45,22 @@
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row :gutter="24" style="margin-top: 10px">
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="产品描述" class="custom-label">
|
|
|
<span>{{ lot.productionPlanDetail.productDescription }}</span>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- </el-row>
|
|
|
- <el-row :gutter="24" style="margin-top: 10px">
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="图纸版本" class="custom-label">
|
|
|
- <span>{{ lot.technologyVersion }}</span>
|
|
|
+ <span style="margin-left: 14px">{{ lot.technologyVersion }}</span>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="单批量" class="custom-label">
|
|
|
- <span style="margin-left: 28px"> {{ lot.productionQuantity }}</span>
|
|
|
+ <span style="margin-left: 14px"> {{ lot.productionQuantity }}</span>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
@@ -66,23 +71,23 @@
|
|
|
}}</span>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
+ <el-row :gutter="24" style="margin-top: 10px">
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="下达日期" class="custom-label">
|
|
|
<span>{{ lot.productionPlanDetail.issueDate }}</span>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- </el-row>
|
|
|
-
|
|
|
- <el-row :gutter="24" style="margin-top: 10px">
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="当前箱号" class="custom-label">
|
|
|
- <span>{{ lot.carrierName }}</span>
|
|
|
+ <span style="margin-left: 12px">{{ lot.carrierName }}</span>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="母批号" class="custom-label">
|
|
|
- <span style="margin-left: 23px">{{ lot.fromCode }}</span>
|
|
|
+ <span style="margin-left: 14px">{{ lot.fromCode }}</span>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|