Showing
1 changed file
with
6 additions
and
6 deletions
| ... | ... | @@ -92,13 +92,13 @@ |
| 92 | 92 | </uni-list-item> |
| 93 | 93 | <uni-list-item title="厚度公差上限(mm)"> |
| 94 | 94 | <template v-slot:footer> |
| 95 | - <uni-easyinput type="text" v-model="item.thicknessTolPos" :inputBorder="false" | |
| 95 | + <uni-easyinput type="digit" v-model="item.thicknessTolPos" :inputBorder="false" | |
| 96 | 96 | placeholder="请输入厚度公差上限" @input="onNumberInput(idx, 'thicknessTolPos')" @blur="onNumberBlur(idx, 'thicknessTolPos', 9)" /> |
| 97 | 97 | </template> |
| 98 | 98 | </uni-list-item> |
| 99 | 99 | <uni-list-item title="厚度公差下限(mm)"> |
| 100 | 100 | <template v-slot:footer> |
| 101 | - <uni-easyinput type="text" v-model="item.thicknessTolNeg" :inputBorder="false" | |
| 101 | + <uni-easyinput type="digit" v-model="item.thicknessTolNeg" :inputBorder="false" | |
| 102 | 102 | placeholder="请输入厚度公差下限" @input="onNumberInput(idx, 'thicknessTolNeg')" @blur="onNumberBlur(idx, 'thicknessTolNeg', 9)" /> |
| 103 | 103 | </template> |
| 104 | 104 | </uni-list-item> |
| ... | ... | @@ -109,12 +109,12 @@ |
| 109 | 109 | </uni-list-item> |
| 110 | 110 | <uni-list-item title="宽度公差上限(mm)"> |
| 111 | 111 | <template v-slot:footer> |
| 112 | - <uni-easyinput type="text" v-model="item.widthTolPos" :inputBorder="false" placeholder="请输入宽度公差上限" @input="onNumberInput(idx, 'widthTolPos')" @blur="onNumberBlur(idx, 'widthTolPos', 9)" /> | |
| 112 | + <uni-easyinput type="digit" v-model="item.widthTolPos" :inputBorder="false" placeholder="请输入宽度公差上限" @input="onNumberInput(idx, 'widthTolPos')" @blur="onNumberBlur(idx, 'widthTolPos', 9)" /> | |
| 113 | 113 | </template> |
| 114 | 114 | </uni-list-item> |
| 115 | 115 | <uni-list-item title="宽度公差下限(mm)"> |
| 116 | 116 | <template v-slot:footer> |
| 117 | - <uni-easyinput type="text" v-model="item.widthTolNeg" :inputBorder="false" placeholder="请输入宽度公差下限" @input="onNumberInput(idx, 'widthTolNeg')" @blur="onNumberBlur(idx, 'widthTolNeg', 9)" /> | |
| 117 | + <uni-easyinput type="digit" v-model="item.widthTolNeg" :inputBorder="false" placeholder="请输入宽度公差下限" @input="onNumberInput(idx, 'widthTolNeg')" @blur="onNumberBlur(idx, 'widthTolNeg', 9)" /> | |
| 118 | 118 | </template> |
| 119 | 119 | </uni-list-item> |
| 120 | 120 | <uni-list-item title="长度(mm)"> |
| ... | ... | @@ -124,13 +124,13 @@ |
| 124 | 124 | </uni-list-item> |
| 125 | 125 | <uni-list-item title="长度公差上限(mm)"> |
| 126 | 126 | <template v-slot:footer> |
| 127 | - <uni-easyinput type="text" v-model="item.lengthTolPos" :inputBorder="false" | |
| 127 | + <uni-easyinput type="digit" v-model="item.lengthTolPos" :inputBorder="false" | |
| 128 | 128 | placeholder="请输入长度公差上限" @input="onNumberInput(idx, 'lengthTolPos')" @blur="onNumberBlur(idx, 'lengthTolPos', 9)" /> |
| 129 | 129 | </template> |
| 130 | 130 | </uni-list-item> |
| 131 | 131 | <uni-list-item title="长度公差下限(mm)"> |
| 132 | 132 | <template v-slot:footer> |
| 133 | - <uni-easyinput type="text" v-model="item.lengthTolNeg" :inputBorder="false" | |
| 133 | + <uni-easyinput type="digit" v-model="item.lengthTolNeg" :inputBorder="false" | |
| 134 | 134 | placeholder="请输入长度公差下限" @input="onNumberInput(idx, 'lengthTolNeg')" @blur="onNumberBlur(idx, 'lengthTolNeg', 9)" /> |
| 135 | 135 | </template> |
| 136 | 136 | </uni-list-item> | ... | ... |