feat(钢卷管理): 新增调制度和镀层种类字段
在钢卷管理的多个页面和组件中添加调制度(temperGrade)和镀层种类(coatingType)字段,包括表单输入、显示和查询功能。同时优化了部分页面布局和代码结构,移除了不再使用的质量状态枚举定义
This commit is contained in:
@@ -54,6 +54,18 @@
|
||||
<span class="info-label">净重:</span>
|
||||
<span class="info-value">{{ currentInfo.netWeight ? currentInfo.netWeight + ' t' : '—' }}</span>
|
||||
</div>
|
||||
<div class="info-row">
|
||||
<span class="info-label">长度:</span>
|
||||
<span class="info-value">{{ currentInfo.length ? currentInfo.length + ' m' : '—' }}</span>
|
||||
</div>
|
||||
<div class="info-row">
|
||||
<span class="info-label">调制度:</span>
|
||||
<span class="info-value">{{ currentInfo.temperGrade || '—' }}</span>
|
||||
</div>
|
||||
<div class="info-row">
|
||||
<span class="info-label">镀层种类:</span>
|
||||
<span class="info-value">{{ currentInfo.coatingType || '—' }}</span>
|
||||
</div>
|
||||
<div class="info-row">
|
||||
<span class="info-label">逻辑库区:</span>
|
||||
<span class="info-value">{{ currentInfo.nextWarehouseName || '—' }}</span>
|
||||
@@ -162,6 +174,14 @@
|
||||
</el-input-number>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item label="调制度" prop="temperGrade">
|
||||
<el-input v-model="updateForm.temperGrade" placeholder="请输入调制度" />
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item label="镀层种类" prop="coatingType">
|
||||
<el-input v-model="updateForm.coatingType" placeholder="请输入镀层种类" />
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item label="逻辑库区" prop="warehouseId">
|
||||
<WarehouseSelect
|
||||
v-model="updateForm.warehouseId"
|
||||
@@ -289,6 +309,8 @@ export default {
|
||||
packingStatus: '',
|
||||
trimmingRequirement: '',
|
||||
length: undefined,
|
||||
temperGrade: '',
|
||||
coatingType: '',
|
||||
},
|
||||
rules: {
|
||||
currentCoilNo: [
|
||||
|
||||
Reference in New Issue
Block a user