Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -240,7 +240,7 @@ export const inputBlurValidate = { | ... | @@ -240,7 +240,7 @@ export const inputBlurValidate = { |
| 240 | let markCoin = false; | 240 | let markCoin = false; |
| 241 | if (value.length) { | 241 | if (value.length) { |
| 242 | this[customVal] = Number(value); | 242 | this[customVal] = Number(value); |
| 243 | - // 其中一个有值的情况下 | 243 | + // 其中一个有值的情况下人民币 |
| 244 | if (customVal == "minCNYCustomVal" || customVal == "maxCNYCustomVal") { | 244 | if (customVal == "minCNYCustomVal" || customVal == "maxCNYCustomVal") { |
| 245 | if (this.minCNYCustomVal && this.maxCNYCustomVal) { | 245 | if (this.minCNYCustomVal && this.maxCNYCustomVal) { |
| 246 | this.validateForm = false; | 246 | this.validateForm = false; |
| ... | @@ -251,7 +251,7 @@ export const inputBlurValidate = { | ... | @@ -251,7 +251,7 @@ export const inputBlurValidate = { |
| 251 | this.$refs[coin[customVal]].innerHTML = ""; | 251 | this.$refs[coin[customVal]].innerHTML = ""; |
| 252 | } | 252 | } |
| 253 | } | 253 | } |
| 254 | - // 都有值的情况下 | 254 | + // 都有值的情况下美元 |
| 255 | else { | 255 | else { |
| 256 | if (this.minSUDCustomVal && this.maxSUDCustomVal) { | 256 | if (this.minSUDCustomVal && this.maxSUDCustomVal) { |
| 257 | this.validateForm = false; | 257 | this.validateForm = false; | ... | ... |
-
Please register or login to post a comment