|
@@ -117,8 +117,8 @@ export default defineComponent({
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|
|
|
const max = props.canUseMoney;
|
|
const max = props.canUseMoney;
|
|
|
- if (max && formState.price) {
|
|
|
|
|
- if (formState.price > max) {
|
|
|
|
|
|
|
+ if (max) {
|
|
|
|
|
+ if (formState.price && formState.price > max) {
|
|
|
message.error(`提现金额不能超过${max}`);
|
|
message.error(`提现金额不能超过${max}`);
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|