style(mobile): 优化附件文件列表的展示效果

This commit is contained in:
dj
2025-04-11 14:08:02 +08:00
parent af593b08da
commit 65a4c72fd0
7 changed files with 16 additions and 9 deletions

View File

@@ -42,7 +42,7 @@
<baseTitle title="关联项目"></baseTitle>
<el-col :span="24">
<el-form-item>
<fvTable style="width: 100%;max-height:160px" height="160" v-if="showTable" :tableConfig="projectTable"
<fvTable style="width: 100%;max-height:160px" height="160" v-if="showTable" :scrollbar-always-on="true" :tableConfig="projectTable"
:data="formData.projects" :isSettingCol="false" :pagination="false">
<template #empty>
<el-empty :image-size="55" description="暂无数据" style="padding: 0"/>
@@ -55,7 +55,7 @@
<baseTitle title="附件文件"></baseTitle>
<el-col :span="24">
<el-form-item>
<fvTable style="width: 100%;max-height: 160px;" height="160" v-if="showTable" :tableConfig="fileTable"
<fvTable style="width: 100%;max-height: 160px;" height="160" v-if="showTable":scrollbar-always-on="true" :tableConfig="fileTable"
:data="formData.files" :isSettingCol="false" :pagination="false">
<template #empty>
<el-empty :image-size="55" description="暂无数据" style="padding: 0"/>
@@ -134,12 +134,15 @@ const projectTable = reactive({
prop: 'projectName',
label: '项目名称',
align: 'center',
showOverflowTooltip: false,
width: 200,
},
{
prop: 'specialFundAmount',
label: '项目金额',
align: 'center',
minWidth: 120,
showOverflowTooltip: false,
currentRender:({row})=>{
return <span>{toThousands(row.specialFundAmount)}</span>
}