elementui 联级选择器 选择任意节点 点击lable时选中并缩起来

	mounted() {
	    // 联级选择器点击lable也能选中
	   setInterval(function() {
	      document.querySelectorAll('.el-cascader-node__label').forEach(el => {
	        el.onclick = function() {
	          if (this.previousElementSibling) this.previousElementSibling.click()
	        }
	      })
	    }, 1000)
  	},
	  watch: {
	    // 联级选择器选中后 练级选择器缩起来
	    'dataForm.areaCode'() {
	      if (this.$refs.refHandle) {
	        this.$refs.refHandle.dropDownVisible = false //监听值发生变化就关闭它
	      }
	    }
	  }

dataForm.areaCode为 data数据中的 dataForm: { areaCode:" " }表单中的数据
refHandle 为 在

你可能感兴趣的:(elementui)