mirror of
https://gitee.com/LongbowEnterprise/BootstrapBlazor.git
synced 2024-12-04 21:20:16 +08:00
!816 fix(#I2AYE6): set the default column name as property name when not set display name
* chore: 更新项目依赖版本 * refactor: 未找到列显示文本时使用属性名称
This commit is contained in:
parent
611f5c7e78
commit
eedbc06ca0
@ -1,10 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
||||
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<IsPackable>true</IsPackable>
|
||||
<PackageIcon>logo.png</PackageIcon>
|
||||
<Version>5.0.1</Version>
|
||||
<Version>5.0.2</Version>
|
||||
<PackageReleaseNotes>https://gitee.com/LongbowEnterprise/BootstrapBlazor/wikis</PackageReleaseNotes>
|
||||
</PropertyGroup>
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="BootstrapBlazor" Version="5.0.7" />
|
||||
<PackageReference Include="BootstrapBlazor" Version="5.0.8" />
|
||||
<PackageReference Include="EPPlus" Version="4.5.3.3" />
|
||||
</ItemGroup>
|
||||
|
||||
|
@ -52,7 +52,7 @@ namespace BootstrapBlazor.Components
|
||||
|
||||
var th_value = cols.FirstOrDefault(x => x.GetFieldName() == pi.Name)?.Text
|
||||
?? items.FirstOrDefault()?.GetDisplayName(pi.Name)
|
||||
?? "未设置";
|
||||
?? pi.Name;
|
||||
|
||||
worksheet.SetValue(1, x, th_value);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user