Showing
1 changed file
with
6 additions
and
6 deletions
| ... | ... | @@ -60,13 +60,13 @@ |
| 60 | 60 | </uni-list-item> |
| 61 | 61 | <uni-list-item title="厚度公差上限(mm)"> |
| 62 | 62 | <template v-slot:footer> |
| 63 | - <uni-easyinput type="text" v-model="item.thicknessTolPos" :inputBorder="false" | |
| 63 | + <uni-easyinput type="digit" v-model="item.thicknessTolPos" :inputBorder="false" | |
| 64 | 64 | placeholder="请输入厚度公差上限" @input="onNumberInput(idx, 'thicknessTolPos')" @blur="onNumberBlur(idx, 'thicknessTolPos', 9)" /> |
| 65 | 65 | </template> |
| 66 | 66 | </uni-list-item> |
| 67 | 67 | <uni-list-item title="厚度公差下限(mm)"> |
| 68 | 68 | <template v-slot:footer> |
| 69 | - <uni-easyinput type="text" v-model="item.thicknessTolNeg" :inputBorder="false" | |
| 69 | + <uni-easyinput type="digit" v-model="item.thicknessTolNeg" :inputBorder="false" | |
| 70 | 70 | placeholder="请输入厚度公差下限" @input="onNumberInput(idx, 'thicknessTolNeg')" @blur="onNumberBlur(idx, 'thicknessTolNeg', 9)" /> |
| 71 | 71 | </template> |
| 72 | 72 | </uni-list-item> |
| ... | ... | @@ -77,13 +77,13 @@ |
| 77 | 77 | </uni-list-item> |
| 78 | 78 | <uni-list-item title="宽度公差上限(mm)"> |
| 79 | 79 | <template v-slot:footer> |
| 80 | - <uni-easyinput type="text" v-model="item.widthTolPos" :inputBorder="false" | |
| 80 | + <uni-easyinput type="digit" v-model="item.widthTolPos" :inputBorder="false" | |
| 81 | 81 | placeholder="请输入宽度公差上限" @input="onNumberInput(idx, 'widthTolPos')" @blur="onNumberBlur(idx, 'widthTolPos', 9)" /> |
| 82 | 82 | </template> |
| 83 | 83 | </uni-list-item> |
| 84 | 84 | <uni-list-item title="宽度公差下限(mm)"> |
| 85 | 85 | <template v-slot:footer> |
| 86 | - <uni-easyinput type="text" v-model="item.widthTolNeg" :inputBorder="false" | |
| 86 | + <uni-easyinput type="digit" v-model="item.widthTolNeg" :inputBorder="false" | |
| 87 | 87 | placeholder="请输入宽度公差下限" @input="onNumberInput(idx, 'widthTolNeg')" @blur="onNumberBlur(idx, 'widthTolNeg', 9)" /> |
| 88 | 88 | </template> |
| 89 | 89 | </uni-list-item> |
| ... | ... | @@ -94,13 +94,13 @@ |
| 94 | 94 | </uni-list-item> |
| 95 | 95 | <uni-list-item title="长度公差上限(mm)"> |
| 96 | 96 | <template v-slot:footer> |
| 97 | - <uni-easyinput type="text" v-model="item.lengthTolPos" :inputBorder="false" | |
| 97 | + <uni-easyinput type="digit" v-model="item.lengthTolPos" :inputBorder="false" | |
| 98 | 98 | placeholder="请输入长度公差上限" @input="onNumberInput(idx, 'lengthTolPos')" @blur="onNumberBlur(idx, 'lengthTolPos', 9)" /> |
| 99 | 99 | </template> |
| 100 | 100 | </uni-list-item> |
| 101 | 101 | <uni-list-item title="长度公差下限(mm)"> |
| 102 | 102 | <template v-slot:footer> |
| 103 | - <uni-easyinput type="text" v-model="item.lengthTolNeg" :inputBorder="false" | |
| 103 | + <uni-easyinput type="digit" v-model="item.lengthTolNeg" :inputBorder="false" | |
| 104 | 104 | placeholder="请输入长度公差下限" @input="onNumberInput(idx, 'lengthTolNeg')" @blur="onNumberBlur(idx, 'lengthTolNeg', 9)" /> |
| 105 | 105 | </template> |
| 106 | 106 | </uni-list-item> | ... | ... |