|
@@ -67,6 +67,20 @@ const handleScanning = async () => {
|
|
|
}
|
|
|
uni.navigateTo({ url: `/pages/home/result/orderConfirm?orderNo=${options.no}` })
|
|
|
}
|
|
|
+const limitDecimalPlaces =(event) =>{
|
|
|
+ const value = event.value;
|
|
|
+ const regex = /^[0-9]+(.[0-9])?$/; // 正则表达式,匹配最多两位小数的数字
|
|
|
+ if (!regex.test(value)) {
|
|
|
+ console.log(event)
|
|
|
+ nextTick(()=>{
|
|
|
+ orderAmount.value= value.slice(0, value.lastIndexOf('.') + 2);
|
|
|
+ })
|
|
|
+ // 如果输入不符合正则表达式,则不更新formattedNumber,保持原值或截断多余的位数
|
|
|
+ return; // 或者可以设置一个合理的默认值或截断多余的位数,例如:this.formattedNumber = value.slice(0, value.lastIndexOf('.') + 3);
|
|
|
+ } else {
|
|
|
+ orderAmount.value= value; // 更新显示值
|
|
|
+ }
|
|
|
+}
|
|
|
const handle2Settlement = () => {
|
|
|
if ((orderAmount.value ?? '') === '') {
|
|
|
uni.showToast({ title: '请输入金额', icon: 'none', duration: 5000 })
|
|
@@ -321,8 +335,10 @@ onShareAppMessage(() => ({}))
|
|
|
</div>
|
|
|
<div class="flex-1 bg-[#f5f7f9] rounded-lg flex items-center p-3.5">
|
|
|
<wd-input
|
|
|
+ @input="limitDecimalPlaces"
|
|
|
custom-class="bg-transparent! flex-1"
|
|
|
- type="number"
|
|
|
+ type="digit"
|
|
|
+ step="0.1"
|
|
|
no-border
|
|
|
placeholder="请输金额"
|
|
|
v-model="orderAmount"
|