Elements-SY

modify

......@@ -240,7 +240,7 @@ export const inputBlurValidate = {
let markCoin = false;
if (value.length) {
this[customVal] = Number(value);
// 其中一个有值的情况下
// 其中一个有值的情况下人民币
if (customVal == "minCNYCustomVal" || customVal == "maxCNYCustomVal") {
if (this.minCNYCustomVal && this.maxCNYCustomVal) {
this.validateForm = false;
......@@ -251,7 +251,7 @@ export const inputBlurValidate = {
this.$refs[coin[customVal]].innerHTML = "";
}
}
// 都有值的情况下
// 都有值的情况下美元
else {
if (this.minSUDCustomVal && this.maxSUDCustomVal) {
this.validateForm = false;
......