整理模版
This commit is contained in:
parent
7ceedce867
commit
016f3d49f4
@ -1,4 +1,8 @@
|
|||||||
@{
|
@{
|
||||||
|
string LowerFirstLetter(string text)
|
||||||
|
{
|
||||||
|
return text.ToString()[..1].ToLower() + text[1..]; // 首字母小写
|
||||||
|
}
|
||||||
var pkField = Model.TableField.Where(c => c.ColumnKey == "True").FirstOrDefault();
|
var pkField = Model.TableField.Where(c => c.ColumnKey == "True").FirstOrDefault();
|
||||||
string pkFieldName = null;
|
string pkFieldName = null;
|
||||||
if(pkField != null && !string.IsNullOrEmpty(pkField.PropertyName))
|
if(pkField != null && !string.IsNullOrEmpty(pkField.PropertyName))
|
||||||
@ -397,10 +401,3 @@ const handleDelete = (row: any) => {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
@{
|
|
||||||
string LowerFirstLetter(string text)
|
|
||||||
{
|
|
||||||
return text.ToString()[..1].ToLower() + text[1..]; // 首字母小写
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue
Block a user