fix: 产品最高利率不能大于最低利率判断

master
wx-jincw 7 months ago
parent 30a30278ca
commit 05d4eb205a

@ -798,6 +798,11 @@ export default {
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.interestRateBegin > this.form.interestRateEnd) {
this.$modal.msgError("最低利率不能大于最高利率");
return;
}
if (this.form.id != null) {
updateInfo(this.form).then(response => {
this.$modal.msgSuccess("修改成功");

Loading…
Cancel
Save