iview的modal中的form验证出错,页面不关闭的方法

效果如下: 

iview的modal中的form验证出错,页面不关闭的方法_第1张图片 

代码如下: 


      
// 下边这个很重要,必须要重写

方法如下:

// 保存配置
      saveConfig(){
        this.$refs.configForm.validate(validate => {
          console.log("validate",validate)
          if (validate) {
            this.$post("/api/newcity/Dic/SensitiveWords/SaveData", {
              ...this.configForm,
              State: this.configForm.State == true ? 1 : 0
            })
              .then(res => {
                if (res.Success) {
                  this.$Message.success('保存成功');
                  this.configModal = false
                  setTimeout(() => {
                    this.sureSearch()
                  }, 1000)
                } else {
                  this.$Message.error(res.Message);
                }
              })
              .catch(error => {
                this.configModal = false
                console.log(error);
              });
          }else {
            this.$Message.warning('请填写正确的信息');
          }
        })
      },

 

你可能感兴趣的:(iview,前端)