feat(machine): 替换输入框为数字输入框
This commit is contained in:
@@ -57,7 +57,8 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-input
|
<el-input-number
|
||||||
|
:controls="false"
|
||||||
v-model="row.startValue"
|
v-model="row.startValue"
|
||||||
style="width: 60px"
|
style="width: 60px"
|
||||||
:disabled="isStartValueDisabled[row.sort]"
|
:disabled="isStartValueDisabled[row.sort]"
|
||||||
@@ -82,7 +83,8 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-input
|
<el-input-number
|
||||||
|
:controls="false"
|
||||||
v-model="row.endValue"
|
v-model="row.endValue"
|
||||||
style="width: 60px"
|
style="width: 60px"
|
||||||
:disabled="isEndValueDisabled[row.sort]"
|
:disabled="isEndValueDisabled[row.sort]"
|
||||||
@@ -107,7 +109,7 @@
|
|||||||
<el-table-column label="最大误差">
|
<el-table-column label="最大误差">
|
||||||
<el-table-column prop="maxErrorValue" label="最大误差值" width="100">
|
<el-table-column prop="maxErrorValue" label="最大误差值" width="100">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<el-input v-model="row.maxErrorValue" style="width: 70px" />
|
<el-input-number :controls="false" v-model="row.maxErrorValue" style="width: 70px" />
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="误差类型" width="170">
|
<el-table-column label="误差类型" width="170">
|
||||||
|
|||||||
Reference in New Issue
Block a user