mineadmin/MineAdmin

[FEATURE] MaProTable 选项支持去掉折叠展示吗?

Closed this issue · 3 comments

MaProTable 选项支持去掉折叠展示吗?

// 参数配置
const options = ref<MaProTableOptions>({
  // 搜索参数
  searchOptions: {
    fold: false,  // 这里好像仅仅是折叠初始状态,并不能去掉折叠
    text: {
      searchBtn: () => t('crud.search'),
      resetBtn: () => t('crud.reset'),
      isFoldBtn: () => t('crud.searchFold'),
      notFoldBtn: () => t('crud.searchUnFold'),
    },
  },
}

<template>
  <MaProTable ref="proTableRef" :options="options" :schema="schema">
    ...
  </MaProTable>
</template>

MaProTable 的 fold 属性确实只控制折叠的初始状态,而不能完全去掉折叠按钮。当前没有找到直接隐藏折叠按钮的配置选项。你可能需要通过自定义样式或修改组件代码来实现这一点。

To continue talking to Dosu, mention @dosu.


Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other

目前还不支持,你可以通过css选择器给隐藏掉,后续会增加这个api或者属性来控制

mineadmin/search 版本更新到 1.0.29
增加了 foldButtonShow: boolean 参数