2026-01-22 17:40
是样式问题,表格宽度挤出屏幕了 按下面这个来
<template>
<div class="text-center text-18px py-10px bg-#F9F9F9">
<div class="flex gap-x-10px">
<div
class="flex-basic-180px flex-shrink-0 text-center bg-#F9F9F9 pt-15px w-180px border-solid border-#D9D9D9"
>查询方案</div
>
<div class="flex-1 p-5px max-w-[calc(100%-210px)]">
<LowTable
:tableId="option.tableId"
:enhance-data="option.enhanceData"
:fixed-search="option.fixedSearch"
></LowTable>
</div>
</div>
</div>
</template>
<script setup>
const option = ref({ tableId: '1940706813690343425', enhanceData: {}, fixedSearch: {} })
</script>