Commit 0461077e by li_hongchao

用户选择控件事件优化处理

parent 1cd46f09
......@@ -107,6 +107,12 @@ export default {
},
mounted() {
this.updateSelectSet()
let _that = this
document.addEventListener('click', function (e) {
if (_that.isShowing) {
_that.isShowing = false
}
})
},
beforeDestroy() {
this.isShowing = false
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment