This commit is contained in:
John
2024-03-25 23:15:11 +08:00
parent 7d8a0c4c11
commit 8a171ae091

View File

@@ -132,10 +132,16 @@ const lmChecked = ref('')
const moneyReduce = (step: number) => {
if (strip.value - step < loans.loansMinAccount) {
return
}
strip.value-=step
}
const moneyAdd = (step: number) => {
if (strip.value + step > loans.loansMaxAccount) {
return
}
strip.value+=step
}