123
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user