fix : 修复台账表格最小高度

This commit is contained in:
2024-07-03 21:38:51 +08:00
parent 9a789db8a7
commit 361510242c

View File

@@ -1,12 +1,15 @@
<template>
<baseTitle title="基础信息"></baseTitle>
<fvForm :schema="schema" @getInstance="(e)=>baseForm = e"></fvForm>
<fvSearchForm :searchConfig="searchConfig" @search="search"></fvSearchForm>
<fvTable ref="tableIns" :tableConfig="tableConfig" @headBtnClick="headBtnClick" @selectionChange="selectionChange">
<template #empty>
<el-empty description="暂无数据"/>
</template>
</fvTable>
<view style="overflow-y: scroll">
<baseTitle title="基础信息"></baseTitle>
<fvForm :schema="schema" @getInstance="(e)=>baseForm = e"></fvForm>
<fvSearchForm :searchConfig="searchConfig" @search="search"></fvSearchForm>
<fvTable ref="tableIns" :tableConfig="tableConfig" @headBtnClick="headBtnClick" @selectionChange="selectionChange">
<template #empty>
<el-empty description="暂无数据"/>
</template>
</fvTable>
</view>
</template>
<script setup lang="jsx">
@@ -326,5 +329,7 @@ const search = (val) => {
</script>
<style scoped>
:deep(.el-table--fit){
min-height: 400px!important;
}
</style>