feat(卷材管理): 添加实测长度和实测宽度字段

在卷材管理的多个组件和视图中添加实测长度(actualLength)和实测宽度(actualWidth)字段,包括显示、表单输入和数据模型。这些字段用于记录卷材的实际测量尺寸,提高数据记录的准确性。
This commit is contained in:
砂糖
2026-03-12 17:03:02 +08:00
parent e589bb6496
commit 3e9a08308f
8 changed files with 102 additions and 5 deletions

View File

@@ -193,6 +193,18 @@
<template slot="append"></template>
</el-input-number>
</el-form-item>
<el-form-item label="实测长度(m)" prop="actualLength">
<el-input-number :controls="false" v-model="item.actualLength" placeholder="请输入实测长度" type="number"
:step="0.01" :disabled="readonly">
<template slot="append"></template>
</el-input-number>
</el-form-item>
<el-form-item label="实测宽度(m)" prop="actualWidth">
<el-input-number :controls="false" v-model="item.actualWidth" placeholder="请输入实测宽度" type="number"
:step="0.01" :disabled="readonly">
<template slot="append"></template>
</el-input-number>
</el-form-item>
<el-form-item label="调制度" prop="temperGrade">
<el-input v-model="item.temperGrade" placeholder="请输入调制度" />
</el-form-item>
@@ -275,6 +287,8 @@ export default {
length: undefined,
temperGrade: '',
coatingType: '',
actualLength: undefined,
actualWidth: undefined,
}
],
loading: false,
@@ -459,6 +473,8 @@ export default {
trimmingRequirement: '',
temperGrade: '',
coatingType: '',
actualLength: undefined,
actualWidth: undefined,
});
},