|
|
@@ -14,6 +14,7 @@
|
|
|
type="number"
|
|
|
:min="getAttrs('specimensNum', 'min')"
|
|
|
:max="getAttrs('specimensNum', 'max')"
|
|
|
+ :step="getAttrs('specimensNum', 'step')"
|
|
|
:precision="getAttrs('specimensNum', 'precision')"
|
|
|
:disabled="readonly"
|
|
|
placeholder="请输入"
|
|
|
@@ -28,6 +29,7 @@
|
|
|
type="number"
|
|
|
:min="getAttrs('repeatNum', 'min')"
|
|
|
:max="getAttrs('repeatNum', 'max')"
|
|
|
+ :step="getAttrs('repeatNum', 'step')"
|
|
|
:precision="getAttrs('repeatNum', 'precision')"
|
|
|
:disabled="readonly"
|
|
|
placeholder="请输入"
|
|
|
@@ -43,6 +45,7 @@
|
|
|
type="number"
|
|
|
:min="getAttrs('days', 'min')"
|
|
|
:max="getAttrs('days', 'max')"
|
|
|
+ :step="getAttrs('days', 'step')"
|
|
|
:precision="getAttrs('days', 'precision')"
|
|
|
:disabled="readonly"
|
|
|
placeholder="请输入"
|
|
|
@@ -64,6 +67,7 @@
|
|
|
type="number"
|
|
|
:min="getAttrs('methodNum', 'min')"
|
|
|
:max="getAttrs('methodNum', 'max')"
|
|
|
+ :step="getAttrs('methodNum', 'step')"
|
|
|
:precision="getAttrs('methodNum', 'precision')"
|
|
|
:disabled="readonly"
|
|
|
placeholder="请输入"
|
|
|
@@ -98,7 +102,7 @@
|
|
|
</el-row>
|
|
|
<el-row v-if="isShow('targetValue')" :gutter="20" class="form-row">
|
|
|
<el-col :span="24">
|
|
|
- <el-form-item prop="targetValue" :show-message="false" class="inline-item">
|
|
|
+ <el-form-item prop="shiYanCanShu.targetValue" :show-message="false" class="inline-item">
|
|
|
<template slot="label">
|
|
|
<span>{{ getAttrs('targetValue', 'label', false) }}</span>
|
|
|
<el-tooltip
|
|
|
@@ -125,7 +129,7 @@
|
|
|
</el-row>
|
|
|
<el-row v-if="isShow('claimValue')" :gutter="20" class="form-row">
|
|
|
<el-col :span="24">
|
|
|
- <el-form-item prop="claimValue" :show-message="false" class="inline-item">
|
|
|
+ <el-form-item prop="shiYanCanShu.claimValue" :show-message="false" class="inline-item">
|
|
|
<template slot="label">
|
|
|
<span>{{ getAttrs('claimValue', 'label', false) }}</span>
|
|
|
<el-tooltip
|
|
|
@@ -161,7 +165,7 @@
|
|
|
</el-row>
|
|
|
<el-row :gutter="20" class="form-row">
|
|
|
<el-col v-if="isShow('rejectionRate')" :span="12">
|
|
|
- <el-form-item :label="getAttrs('rejectionRate', 'label', false)" prop="rejectionRate" :show-message="false">
|
|
|
+ <el-form-item :label="getAttrs('rejectionRate', 'label', false)" prop="shiYanCanShu.rejectionRate" :show-message="false">
|
|
|
<el-select
|
|
|
v-model="pageInfo.rejectionRate"
|
|
|
clearable
|
|
|
@@ -198,11 +202,12 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col v-if="pageInfo.standard === '基于允许总误差TEa' && isShow('tea')" :span="12">
|
|
|
- <el-form-item label="TEa数值" prop="tea" :show-message="false">
|
|
|
+ <el-form-item label="TEa数值" prop="shiYanCanShu.tea" :show-message="false">
|
|
|
<el-input-number
|
|
|
v-model="pageInfo.tea"
|
|
|
type="number"
|
|
|
:min="0"
|
|
|
+ :step="getAttrs('standard', 'step')"
|
|
|
:precision="2"
|
|
|
:disabled="readonly"
|
|
|
placeholder="请输入"
|
|
|
@@ -339,7 +344,7 @@
|
|
|
type="number"
|
|
|
:min="getAttrs('allowableR2', 'min')"
|
|
|
:max="getAttrs('allowableR2', 'max')"
|
|
|
- :step="0.001"
|
|
|
+ :step="getAttrs('allowableR2', 'step')"
|
|
|
:precision="getAttrs('allowableR2', 'precision')"
|
|
|
:disabled="readonly"
|
|
|
placeholder="请输入"
|
|
|
@@ -364,7 +369,7 @@
|
|
|
type="number"
|
|
|
:min="getAttrs('rangeValue', 'min')"
|
|
|
:max="getAttrs('rangeValue', 'max')"
|
|
|
- :step="0.01"
|
|
|
+ :step="getAttrs('rangeValue', 'step')"
|
|
|
:precision="getAttrs('rangeValue', 'precision')"
|
|
|
:disabled="readonly"
|
|
|
placeholder="请输入"
|