mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
releases 4.6.12
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div @click="clickEvent">
|
||||
<div class="app-container" @click="clickEvent">
|
||||
<header class="page-header">
|
||||
<div class="left">
|
||||
<a href="/vxe-table/">
|
||||
|
||||
@@ -47,11 +47,13 @@ body {
|
||||
}
|
||||
html,
|
||||
body,
|
||||
#app {
|
||||
#app,
|
||||
.app-container {
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
#app {
|
||||
#app,
|
||||
.app-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "vxe-table",
|
||||
"version": "4.6.11",
|
||||
"version": "4.6.12",
|
||||
"description": "一个基于 vue 的 PC 端表单/表格组件,支持增删改查、虚拟列表、虚拟树、懒加载、快捷菜单、数据校验、树形结构、打印导出、表单渲染、数据分页、弹窗、自定义模板、渲染器、JSON 配置式...",
|
||||
"scripts": {
|
||||
"update": "npm install --legacy-peer-deps",
|
||||
|
||||
@@ -214,9 +214,9 @@ export default defineComponent({
|
||||
if (!disabled) {
|
||||
if (visiblePanel) {
|
||||
if (getEventTargetNode(evnt, panelElem).flag) {
|
||||
// updatePlacement()
|
||||
updatePlacement()
|
||||
} else {
|
||||
// hidePanel()
|
||||
hidePanel()
|
||||
pulldownMethods.dispatchEvent('hide-panel', {}, evnt)
|
||||
}
|
||||
}
|
||||
@@ -231,7 +231,7 @@ export default defineComponent({
|
||||
if (!disabled) {
|
||||
reactData.isActivated = getEventTargetNode(evnt, el).flag || getEventTargetNode(evnt, panelElem).flag
|
||||
if (visiblePanel && !reactData.isActivated) {
|
||||
// hidePanel()
|
||||
hidePanel()
|
||||
pulldownMethods.dispatchEvent('hide-panel', {}, evnt)
|
||||
}
|
||||
}
|
||||
@@ -240,7 +240,7 @@ export default defineComponent({
|
||||
const handleGlobalBlurEvent = (evnt: Event) => {
|
||||
if (reactData.visiblePanel) {
|
||||
reactData.isActivated = false
|
||||
// hidePanel()
|
||||
hidePanel()
|
||||
pulldownMethods.dispatchEvent('hide-panel', {}, evnt)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user