1
0
mirror of synced 2025-11-06 11:20:40 +08:00

releases 4.7.61

This commit is contained in:
xuliangzhan
2024-08-05 17:58:00 +08:00
parent c9bf25a432
commit 1a4ea0f3d6
4 changed files with 5 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "vxe-table",
"version": "4.7.60",
"version": "4.7.61",
"description": "一个基于 vue 的 PC 端表格组件支持增删改查、虚拟树、列拖拽懒加载、快捷菜单、数据校验、树形结构、打印、导入导出、自定义模板、渲染器、JSON 配置式...",
"scripts": {
"update": "npm install --legacy-peer-deps",
@@ -28,7 +28,7 @@
"style": "lib/style.css",
"typings": "types/index.d.ts",
"dependencies": {
"vxe-pc-ui": "^4.0.86"
"vxe-pc-ui": "^4.0.88"
},
"devDependencies": {
"@types/resize-observer-browser": "^0.1.11",

View File

@@ -172,7 +172,7 @@ export default defineComponent({
const showAllTip = tooltipOpts.showAll
const isColGroup = column.children && column.children.length
const fixedHiddenColumn = fixedType ? column.fixed !== fixedType && !isColGroup : column.fixed && overflowX
const footOverflow = XEUtils.isUndefined(showFooterOverflow) || XEUtils.isNull(showFooterOverflow) ? allColumnFooterOverflow : showFooterOverflow
const footOverflow = XEUtils.eqNull(showFooterOverflow) ? allColumnFooterOverflow : showFooterOverflow
const footAlign = footerAlign || align || allFooterAlign || allAlign
let showEllipsis = footOverflow === 'ellipsis'
const showTitle = footOverflow === 'title'

View File

@@ -228,7 +228,7 @@ export default defineComponent({
const { type, showHeaderOverflow, headerAlign, align, headerClassName } = column
const isColGroup = column.children && column.children.length
const fixedHiddenColumn = fixedType ? (column.fixed !== fixedType && !isColGroup) : !!column.fixed && overflowX
const headOverflow = XEUtils.isUndefined(showHeaderOverflow) || XEUtils.isNull(showHeaderOverflow) ? allColumnHeaderOverflow : showHeaderOverflow
const headOverflow = XEUtils.eqNull(showHeaderOverflow) ? allColumnHeaderOverflow : showHeaderOverflow
const headAlign = headerAlign || align || allHeaderAlign || allAlign
let showEllipsis = headOverflow === 'ellipsis'
const showTitle = headOverflow === 'title'

View File

@@ -315,6 +315,7 @@ export default defineComponent({
round: item.round,
status: item.status,
content: item.name,
permissionCode: item.permissionCode,
destroyOnClose: item.destroyOnClose,
placement: item.placement,
transfer: item.transfer,