Commit 92d8a1a297de64355d9f6d3f86824a55d6b9f277
1 parent
cbb311aa
fix:主要是键盘问题(订货单审核运费+经销库存合同锁价&外贸库存合同锁价单价字段)
Showing
3 changed files
with
3 additions
and
3 deletions
| ... | ... | @@ -87,7 +87,7 @@ |
| 87 | 87 | </uni-list-item> |
| 88 | 88 | <uni-list-item title="单价"> |
| 89 | 89 | <template v-slot:footer> |
| 90 | - <uni-easyinput v-model="item.unitPrice" type="number" :inputBorder="false" | |
| 90 | + <uni-easyinput v-model="item.unitPrice" type="digit" :inputBorder="false" | |
| 91 | 91 | placeholder="请输入单价" @input="onImmediateChange(idx)" |
| 92 | 92 | @blur="onNumberBlur(idx, 'unitPrice', 0)" /> |
| 93 | 93 | </template> | ... | ... |
| ... | ... | @@ -81,7 +81,7 @@ |
| 81 | 81 | </uni-list-item> |
| 82 | 82 | <uni-list-item title="单价"> |
| 83 | 83 | <template v-slot:footer> |
| 84 | - <uni-easyinput v-model="item.unitPrice" type="number" :inputBorder="false" placeholder="请输入单价" @input="onImmediateChange(idx)" @blur="onNumberBlur(idx, 'unitPrice', 0)" /> | |
| 84 | + <uni-easyinput v-model="item.unitPrice" type="digit" :inputBorder="false" placeholder="请输入单价" @input="onImmediateChange(idx)" @blur="onNumberBlur(idx, 'unitPrice', 0)" /> | |
| 85 | 85 | </template> |
| 86 | 86 | </uni-list-item> |
| 87 | 87 | <uni-list-item title="不含税金额"> | ... | ... |
| ... | ... | @@ -80,7 +80,7 @@ |
| 80 | 80 | </template> |
| 81 | 81 | <template v-slot:footer> |
| 82 | 82 | <view class="amount-row"> |
| 83 | - <uni-easyinput type="number" v-model="form.shippingCost" placeholder="0.00" :inputBorder="false" /> | |
| 83 | + <uni-easyinput type="digit" v-model="form.shippingCost" placeholder="请输入运费" :inputBorder="false" /> | |
| 84 | 84 | <text class="unit">元</text> |
| 85 | 85 | </view> |
| 86 | 86 | </template> | ... | ... |