mixins.js 20 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
export const inputBlurValidate = {
  data() {
    return {
      queryForm: {
        minWeight: "",
        maxWeight: "",
        minNumOfPieces: "",
        maxNumOfPieces: "",
      },
      validateForm: true, // form表单节流阀
    };
  },
  methods: {
    // 最小件数失焦事件
    inputBlurMinPieces({ target }) {
      this.validateNumOfPieces(target.value, "minNumOfPieces");
    },
    // 最大件数失焦事件
    inputBlurMaxPieces({ target }) {
      this.validateNumOfPieces(target.value, "maxNumOfPieces");
    },
    // 最小重量失焦事件
    inputBlurMinWeight({ target }) {
      // 重量最小值和最大值都为空的情况下
      if (this.queryForm.minWeight == "" && this.queryForm.maxWeight == "") {
        this.validateForm = true;
        this.$refs.minWeight.innerHTML = "";
      }
      // 鼠标聚焦最小重量,最小重量无值的情况下去校验最大重量
      if (target.value == "" && this.queryForm.maxWeight) {
        if (
          /^(0|[1-9]\d*)(.\d{1,5})?$/.test(Number(this.queryForm.maxWeight))
        ) {
          this.validateForm = true;
          this.$refs.minWeight.innerHTML = "";
        } else {
          this.validateForm = false;
          this.$refs.minWeight.innerHTML = "请输入有效重量,小数保留5位";
        }
      }
      // 最小重量有值的情况下
      if (target.value && Number(target.value) >= 0) {
        if (/^(0|[1-9]\d*)(.\d{1,5})?$/.test(Number(target.value))) {
          if (this.queryForm.maxWeight) {
            if (
              Number(this.queryForm.maxWeight) <
              Number(this.queryForm.minWeight)
            ) {
              this.validateForm = false;
              this.$refs.minWeight.innerHTML = "最小重量不得大于最大重量";
            } else if (
              /^(0|[1-9]\d*)(.\d{1,5})?$/.test(Number(this.queryForm.maxWeight))
            ) {
              this.validateForm = true;
              this.$refs.minWeight.innerHTML = "";
            } else {
              this.validateForm = false;
              this.$refs.minWeight.innerHTML = "请输入有效重量,小数保留5位";
            }
          } else {
            this.validateForm = true;
            this.$refs.minWeight.innerHTML = "";
          }
        } else {
          this.validateForm = false;
          this.$refs.minWeight.innerHTML = "请输入有效重量,小数保留5位";
        }
      } else {
        if (target.value && isNaN(target.value)) {
          this.validateForm = false;
          this.$refs.minWeight.innerHTML = "请输入有效重量,小数保留5位";
        }
        if (Number(target.value) < 0) {
          this.validateForm = false;
          this.$refs.minWeight.innerHTML = "请输入有效重量,小数保留5位";
        }
      }
    },
    // 最大重量失焦事件
    inputBlurMaxWeight({ target }) {
      // 重量最小值和最大值都为空的情况下
      if (this.queryForm.minWeight == "" && this.queryForm.maxWeight == "") {
        this.validateForm = true;
        this.$refs.minWeight.innerHTML = "";
      }
      // 鼠标聚焦最大重量,最大重量无值的情况下去校验最小重量
      if (target.value == "" && this.queryForm.minWeight) {
        if (
          /^(0|[1-9]\d*)(.\d{1,5})?$/.test(Number(this.queryForm.minWeight))
        ) {
          this.validateForm = true;
          this.$refs.minWeight.innerHTML = "";
        } else {
          this.validateForm = false;
          this.$refs.minWeight.innerHTML = "请输入有效重量,小数保留5位";
          // this.msgError("请输入有效重量,小数保留5位");
        }
      }
      if (target.value && Number(target.value) >= 0) {
        if (/^(0|[1-9]\d*)(.\d{1,5})?$/.test(Number(target.value))) {
          if (this.queryForm.minWeight) {
            if (
              Number(this.queryForm.maxWeight) <
              Number(this.queryForm.minWeight)
            ) {
              this.validateForm = false;
              this.$refs.minWeight.innerHTML = "最小重量不得大于最大重量";
            } else if (
              /^(0|[1-9]\d*)(.\d{1,5})?$/.test(Number(this.queryForm.minWeight))
            ) {
              this.validateForm = true;
              this.$refs.minWeight.innerHTML = "";
            } else {
              this.validateForm = false;
              this.$refs.minWeight.innerHTML = "请输入有效重量,小数保留5位";
            }
          } else {
            this.validateForm = true;
            this.$refs.minWeight.innerHTML = "";
          }
        } else {
          this.validateForm = false;
          this.$refs.minWeight.innerHTML = "请输入有效重量,小数保留5位";
        }
      } else {
        if (target.value && isNaN(target.value)) {
          this.validateForm = false;
          this.$refs.minWeight.innerHTML = "请输入有效重量,小数保留5位";
        }
        if (Number(target.value) < 0) {
          this.validateForm = false;
          this.$refs.minWeight.innerHTML = "请输入有效重量,小数保留5位";
        }
      }
    },
    validateNumber(number) {
      // 首先检查是否为合法数字
      if (isNaN(number)) {
        return "请输入有效数字";
      }

      // 然后检查是否大于0
      if (number <= 0) {
        return "请输入大于0的数字";
      }

      // 如果通过了以上两个条件,则表示数字合法
      return "数字合法";
    },
    // 人民币最小申报价值
    inputCNYBlurMin({ target }, customVal) {
      // 申报价值最小值和最大值都为空的情况下
      if (
        this.queryForm.minCustomVal == "" &&
        this.queryForm.maxCustomVal == ""
      ) {
        this.validateForm = true;
        this.$refs.minCNYCustomVal.innerHTML = "";
      }
      // 鼠标聚焦最小申报价值,最小申报价值无值的情况下去校验最大申报价值
      if (target.value == "" && this.queryForm.maxCustomVal) {
        if (
          /^(0|[1-9]\d*)(.\d{1,2})?$/.test(Number(this.queryForm.maxCustomVal))
        ) {
          this.validateForm = true;
          this.$refs.minCNYCustomVal.innerHTML = "";
        }
      }
      // 最小申报价值有值的情况下
      if (target.value && Number(target.value) >= 0) {
        if (/^(0|[1-9]\d*)(.\d{1,2})?$/.test(Number(target.value))) {
          if (this.queryForm.maxCustomVal) {
            if (
              Number(this.queryForm.maxCustomVal) <
              Number(this.queryForm.minCustomVal)
            ) {
              this.validateForm = false;
              this.$refs.minCNYCustomVal.innerHTML =
                "最小申报价值不得大于最大申报价值";
            } else if (
              /^(0|[1-9]\d*)(.\d{1,2})?$/.test(
                Number(this.queryForm.maxCustomVal)
              )
            ) {
              this.validateForm = true;
              this.$refs.minCNYCustomVal.innerHTML = "";
            } else {
              this.validateForm = false;
              this.$refs.minCNYCustomVal.innerHTML =
                "请输入有效申报价值,小数保留2位";
            }
          } else {
            this.validateForm = true;
            this.$refs.minCNYCustomVal.innerHTML = "";
          }
        } else {
          this.validateForm = false;
          this.$refs.minCNYCustomVal.innerHTML =
            "请输入有效申报价值,小数保留2位";
        }
      } else {
        if (target.value && isNaN(target.value)) {
          this.validateForm = false;
          this.$refs.minCNYCustomVal.innerHTML =
            "请输入有效申报价值,小数保留2位";
        }
        if (Number(target.value) < 0) {
          this.validateForm = false;
          this.$refs.minCNYCustomVal.innerHTML =
            "请输入有效申报价值,小数保留2位";
        }
      }
    },
    // 人民币最大申报价值
    inputCNYBlurMax({ target }, customVal) {
      // 申报价值最小值和最大值都为空的情况下
      if (
        this.queryForm.minCustomVal == "" &&
        this.queryForm.maxCustomVal == ""
      ) {
        this.validateForm = true;
        this.$refs.minCNYCustomVal.innerHTML = "";
      }
      // 鼠标聚焦最大申报价值,最大申报价值无值的情况下去校验最小申报价值
      if (target.value == "" && this.queryForm.minCustomVal) {
        if (
          /^(0|[1-9]\d*)(.\d{1,2})?$/.test(Number(this.queryForm.minCustomVal))
        ) {
          this.validateForm = true;
          this.$refs.minCNYCustomVal.innerHTML = "";
        } else {
          this.validateForm = false;
          this.$refs.minCNYCustomVal.innerHTML =
            "请输入有效申报价值,小数保留2位";
        }
      }
      // 最大申报价值有值的情况下
      if (target.value && Number(target.value) >= 0) {
        if (/^(0|[1-9]\d*)(.\d{1,2})?$/.test(Number(target.value))) {
          if (this.queryForm.minCustomVal) {
            if (
              Number(this.queryForm.maxCustomVal) <
              Number(this.queryForm.minCustomVal)
            ) {
              this.validateForm = false;
              this.$refs.minCNYCustomVal.innerHTML =
                "最小申报价值不得大于最大申报价值";
            } else if (
              /^(0|[1-9]\d*)(.\d{1,2})?$/.test(
                Number(this.queryForm.minCustomVal)
              )
            ) {
              this.validateForm = true;
              this.$refs.minCNYCustomVal.innerHTML = "";
            } else {
              this.validateForm = false;
              this.$refs.minCNYCustomVal.innerHTML =
                "请输入有效申报价值,小数保留2位";
            }
          }
        } else {
          this.validateForm = false;
          this.$refs.minCNYCustomVal.innerHTML =
            "请输入有效申报价值,小数保留2位";
        }
      } else {
        if (target.value && isNaN(target.value)) {
          this.validateForm = false;
          this.$refs.minCNYCustomVal.innerHTML =
            "请输入有效申报价值,小数保留2位";
        }
        if (Number(target.value) < 0) {
          this.validateForm = false;
          this.$refs.minCNYCustomVal.innerHTML =
            "请输入有效申报价值,小数保留2位";
        }
      }
    },
    // 美元最小申报价值
    inputSUDBlurMin({ target }, customVal) {
      // 申报价值最小值和最大值都为空的情况下
      if (
        this.queryForm.minUsdCustomVal == "" &&
        this.queryForm.maxUsdCustomVal == ""
      ) {
        this.validateForm = true;
        this.$refs.minSUDCustomVal.innerHTML = "";
      }
      // 鼠标聚焦最小申报价值,最小申报价值无值的情况下去校验最大申报价值
      if (target.value == "" && this.queryForm.maxUsdCustomVal) {
        if (
          /^(0|[1-9]\d*)(.\d{1,2})?$/.test(
            Number(this.queryForm.maxUsdCustomVal)
          )
        ) {
          this.validateForm = true;
          this.$refs.minSUDCustomVal.innerHTML = "";
        }
      }
      // 最小申报价值有值的情况下
      if (target.value && Number(target.value) >= 0) {
        if (/^(0|[1-9]\d*)(.\d{1,2})?$/.test(Number(target.value))) {
          if (this.queryForm.maxUsdCustomVal) {
            if (
              Number(this.queryForm.maxUsdCustomVal) <
              Number(this.queryForm.minUsdCustomVal)
            ) {
              this.validateForm = false;
              this.$refs.minSUDCustomVal.innerHTML =
                "最小申报价值不得大于最大申报价值";
            } else if (
              /^(0|[1-9]\d*)(.\d{1,2})?$/.test(
                Number(this.queryForm.maxUsdCustomVal)
              )
            ) {
              this.validateForm = true;
              this.$refs.minSUDCustomVal.innerHTML = "";
            } else {
              this.validateForm = false;
              this.$refs.minSUDCustomVal.innerHTML =
                "请输入有效申报价值,小数保留2位";
            }
          } else {
            this.validateForm = true;
            this.$refs.minSUDCustomVal.innerHTML = "";
          }
        } else {
          this.validateForm = false;
          this.$refs.minSUDCustomVal.innerHTML =
            "请输入有效申报价值,小数保留2位";
        }
      } else {
        if (target.value && isNaN(target.value)) {
          this.validateForm = false;
          this.$refs.minSUDCustomVal.innerHTML =
            "请输入有效申报价值,小数保留2位";
        }
        if (Number(target.value) < 0) {
          this.validateForm = false;
          this.$refs.minSUDCustomVal.innerHTML =
            "请输入有效申报价值,小数保留2位";
        }
      }
    },
    // 美元最大申报价值
    inputSUDBlurMax({ target }, customVal) {
      // 申报价值最小值和最大值都为空的情况下
      if (
        this.queryForm.minUsdCustomVal == "" &&
        this.queryForm.maxUsdCustomVal == ""
      ) {
        this.validateForm = true;
        this.$refs.minSUDCustomVal.innerHTML = "";
      }
      // 鼠标聚焦最大申报价值,最大申报价值无值的情况下去校验最小申报价值
      if (target.value == "" && this.queryForm.minUsdCustomVal) {
        if (
          /^(0|[1-9]\d*)(.\d{1,2})?$/.test(
            Number(this.queryForm.minUsdCustomVal)
          )
        ) {
          this.validateForm = true;
          this.$refs.minSUDCustomVal.innerHTML = "";
        } else {
          this.validateForm = false;
          this.$refs.minSUDCustomVal.innerHTML =
            "请输入有效申报价值,小数保留2位";
        }
      }
      // 最大申报价值有值的情况下
      if (target.value && Number(target.value) >= 0) {
        if (/^(0|[1-9]\d*)(.\d{1,2})?$/.test(Number(target.value))) {
          if (this.queryForm.minUsdCustomVal) {
            if (
              Number(this.queryForm.maxUsdCustomVal) <
              Number(this.queryForm.minUsdCustomVal)
            ) {
              this.validateForm = false;
              this.$refs.minSUDCustomVal.innerHTML =
                "最小申报价值不得大于最大申报价值";
            } else if (
              /^(0|[1-9]\d*)(.\d{1,2})?$/.test(
                Number(this.queryForm.minUsdCustomVal)
              )
            ) {
              this.validateForm = true;
              this.$refs.minSUDCustomVal.innerHTML = "";
            } else {
              this.validateForm = false;
              this.$refs.minSUDCustomVal.innerHTML =
                "请输入有效申报价值,小数保留2位";
            }
          }
        } else {
          this.validateForm = false;
          this.$refs.minSUDCustomVal.innerHTML =
            "请输入有效申报价值,小数保留2位";
        }
      } else {
        if (target.value && isNaN(target.value)) {
          this.validateForm = false;
          this.$refs.minSUDCustomVal.innerHTML =
            "请输入有效申报价值,小数保留2位";
        }
        if (Number(target.value) < 0) {
          this.validateForm = false;
          this.$refs.minSUDCustomVal.innerHTML =
            "请输入有效申报价值,小数保留2位";
        }
      }
    },
    // 校验件数方法 【件数可以为空但件数不得为0】只能输入正整数
    validateNumOfPieces(value, pieces) {
      if (value.toString().length) {
        // 获取当前输入框有值的情况下
        this.queryForm[pieces] = Number(value);
        let markPieces = false;
        if (pieces == "minNumOfPieces" || pieces == "maxNumOfPieces") {
          // 最大件数和最小件数都不为空的情况下
          if (
            this.queryForm.minNumOfPieces.toString() != "" &&
            this.queryForm.maxNumOfPieces.toString() != ""
          ) {
            this.validateForm = true;
            this.$refs.minNumOfPieces.innerHTML = "";
            markPieces = true;
          } else {
            markPieces = false;
          }
        }
        if (/^\d+$/.test(this.queryForm[pieces])) {
          if (markPieces) {
            //当最大件数和最小件数都不为空的情况下,最大件数小于最小件数的时候
            if (this.queryForm.maxNumOfPieces < this.queryForm.minNumOfPieces) {
              if (Array.isArray(this.$refs.minNumOfPieces)) {
                this.msgError("最小件数不得大于最大件数");
                this.validateForm = false;
              } else {
                this.$refs.minNumOfPieces.innerHTML = "";
                this.$refs.minNumOfPieces.innerHTML =
                  "最小件数不得大于最大件数";
                this.validateForm = false;
              }
            }
            //当最大件数和最小件数都不为空的情况下,最大件数和最小件数小于1的时候
            else if (
              this.queryForm.minNumOfPieces < 1 ||
              this.queryForm.maxNumOfPieces < 1
            ) {
              if (Array.isArray(this.$refs.minNumOfPieces)) {
                this.msgError("最小件数和最大件数不能小于1");
                this.validateForm = false;
              } else {
                this.$refs.minNumOfPieces.innerHTML = "";
                this.$refs.minNumOfPieces.innerHTML =
                  "最小件数和最大件数不能小于1";
                this.validateForm = false;
              }
            }
            //当最大件数和最小件数都不为空的情况下,最大件数和最小件数满足大于1左区间小于等于右区间的时候
            else {
              this.$refs.minNumOfPieces.innerHTML = "";
              this.validateForm = true;
            }
          } else {
            // 当左右区间其中一个有值的情况下
            if (value.length) {
              if (Number(value) < 1) {
                if (Array.isArray(this.$refs.minNumOfPieces)) {
                  this.msgError("件数不得小于1");
                  this.$refs.minNumOfPieces.innerHTML = "";
                  this.$refs.minNumOfPieces.innerHTML = "件数不得小于1";
                  this.validateForm = false;
                } else {
                  this.msgError("件数不得小于1");
                  this.$refs.minNumOfPieces.innerHTML = "";
                  this.$refs.minNumOfPieces.innerHTML = "件数不得小于1";
                  this.validateForm = false;
                }
              } else {
                if (!Array.isArray(this.$refs.minNumOfPieces)) {
                  this.$refs.minNumOfPieces.innerHTML = "";
                  this.validateForm = true;
                }
              }
            }
          }
        } else {
          if (Array.isArray(this.$refs.minNumOfPieces)) {
            this.msgError("请输入有效件数");
          } else {
            this.queryForm[pieces] = value;
            this.$refs.minNumOfPieces.innerHTML = "";
            this.$refs.minNumOfPieces.innerHTML = "请输入有效件数";
          }
          this.validateForm = false;
        }
      } else {
        // 【左右区间不是都有值的情况下】
        // 最小件数为空最大件数有值的情况下
        if (pieces == "minNumOfPieces" && this.queryForm.maxNumOfPieces > 0) {
          this.$refs.minNumOfPieces.innerHTML = "";
          this.validateForm = true;
        } else {
          this.$refs.minNumOfPieces.innerHTML = "";
          this.$refs.minNumOfPieces.innerHTML = "最大件数不得小于1";
          this.validateForm = false;
        }
        // 最大件数为空最小件数有值的情况下
        if (pieces == "maxNumOfPieces" && this.queryForm.minNumOfPieces > 0) {
          this.$refs.minNumOfPieces.innerHTML = "";
          this.validateForm = true;
        } else {
          this.$refs.minNumOfPieces.innerHTML = "";
          this.validateForm = true;
        }
        // 左右区间 都为空的情况下
        if (
          this.queryForm.minNumOfPieces.toString().length == 0 &&
          this.queryForm.maxNumOfPieces.toString().length == 0
        ) {
          this.$refs.minNumOfPieces.innerHTML = "";
          this.validateForm = true;
        }
      }
      return this.validateForm;
    },
  },
};