fix: 定金和预售价的判断
This commit is contained in:
parent
adb0cb4f2c
commit
8bdaea0ad4
|
@ -677,7 +677,7 @@ export default {
|
|||
if (!spec.advanceSellStockNum) {
|
||||
pass = false
|
||||
}
|
||||
if (spec.presalePrice >= spec.earnestMoney) {
|
||||
if (spec.presalePrice <= spec.earnestMoney) {
|
||||
moneyPass = false
|
||||
}
|
||||
}
|
||||
|
@ -735,7 +735,7 @@ export default {
|
|||
if (!spec.advanceSellStockNum) {
|
||||
pass = false
|
||||
}
|
||||
if (spec.presalePrice >= spec.earnestMoney) {
|
||||
if (spec.presalePrice <= spec.earnestMoney) {
|
||||
moneyPass = false
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue