releases 4.6.12

This commit is contained in:
xuliangzhan
2024-05-09 20:48:38 +08:00
parent 14f0ea2988
commit 8f2f10f23e
4 changed files with 10 additions and 8 deletions

View File

@@ -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/">

View File

@@ -47,11 +47,13 @@ body {
}
html,
body,
#app {
#app,
.app-container {
height: 100%;
overflow: hidden;
}
#app {
#app,
.app-container {
display: flex;
flex-direction: column;
}

View File

@@ -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",

View File

@@ -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)
}
}