| | |
| | | <view style="margin: 10rpx"> |
| | | <text class="title">{{ "结构标准值和实测" }}</text> |
| | | </view> |
| | | <wd-col |
| | | :span="24" |
| | | v-for="(item, index) in formData.structureItems" |
| | | :key="index" |
| | | style="padding-bottom: 10px" |
| | | > |
| | | <wd-form-item |
| | | prop="structureItemsGroup" |
| | | :label="formatValue(item.structureName)" |
| | | label-width="400rpx" |
| | | style="color: red" |
| | | required |
| | | ></wd-form-item> |
| | | <wd-form-item label="标准值" prop="structureValue" required> |
| | | {{ formatValue(item.structureValue) }} |
| | | </wd-form-item> |
| | | <wd-form-item label="实测根数" prop="actualValue1" required> |
| | | <template v-if="isEdit"> |
| | | <wd-input v-model="item.actualValue1" placeholder="请输入实测根数" type="number" /> |
| | | </template> |
| | | <template v-else> |
| | | {{ formatValue(item.actualValue1, "根") }} |
| | | </template> |
| | | </wd-form-item> |
| | | <wd-form-item label="实测直径" prop="actualValue2" required> |
| | | <template v-if="isEdit"> |
| | | <wd-input |
| | | v-model="item.actualValue2" |
| | | placeholder="请输入实测直径(mm)" |
| | | type="number" |
| | | /> |
| | | </template> |
| | | <template v-else> |
| | | {{ formatValue(item.actualValue2, "mm") }} |
| | | </template> |
| | | </wd-form-item> |
| | | </wd-col> |
| | | <template v-for="(item, index) in formData.structureItems" :key="index"> |
| | | <wd-col |
| | | :span="24" |
| | | v-if="!item.structureName?.includes('钢')" |
| | | style="padding-bottom: 10px" |
| | | > |
| | | <wd-form-item |
| | | prop="structureItemsGroup" |
| | | :label="formatValue(item.structureName)" |
| | | label-width="400rpx" |
| | | style="color: red" |
| | | required |
| | | ></wd-form-item> |
| | | <wd-form-item label="标准值" prop="structureValue" required> |
| | | {{ formatValue(item.structureValue) }} |
| | | </wd-form-item> |
| | | <wd-form-item label="实测根数" prop="actualValue1" required> |
| | | <template v-if="isEdit"> |
| | | <wd-input v-model="item.actualValue1" placeholder="请输入实测根数" type="number" /> |
| | | </template> |
| | | <template v-else> |
| | | {{ formatValue(item.actualValue1, "根") }} |
| | | </template> |
| | | </wd-form-item> |
| | | <wd-form-item label="实测直径" prop="actualValue2" required> |
| | | <template v-if="isEdit"> |
| | | <wd-input |
| | | v-model="item.actualValue2" |
| | | placeholder="请输入实测直径(mm)" |
| | | type="number" |
| | | /> |
| | | </template> |
| | | <template v-else> |
| | | {{ formatValue(item.actualValue2, "mm") }} |
| | | </template> |
| | | </wd-form-item> |
| | | </wd-col> |
| | | </template> |
| | | </wd-row> |
| | | |
| | | <!-- 绞线工艺质量控制(可编辑) --> |