This commit is contained in:
PZ688 2025-06-17 17:30:55 +08:00
commit 0cd896a0ea
2 changed files with 2 additions and 2 deletions

View File

@ -337,7 +337,7 @@ const checkTableColumnVisible = (tableColumnName: any) => {
}
}
}
@if(@Model.TableField.Any(t => t.ColumnName == "CreateTime" && t.ColumnName == "UpdateTime" && t.ColumnName == "CreateUserId")){
@if(@Model.TableField.Any(t => t.ColumnName == "CreateTime") && @Model.TableField.Any(t => t.ColumnName == "UpdateTime") && @Model.TableField.Any(t => t.ColumnName == "CreateUserId")){
@:{ title: '修改记录', width: 100, showOverflow: 'tooltip', slots: { default: 'row_record' } },
}
{ title: '操作', fixed: 'right', width: 180, showOverflow: true, slots: { default: 'row_buttons' } },

View File

@ -341,7 +341,7 @@ const checkTableColumnVisible = (tableColumnName: any) => {
}
}
}
@if(@Model.TableField.Any(t => t.ColumnName == "CreateTime" && t.ColumnName == "UpdateTime" && t.ColumnName == "CreateUserId")){
@if(@Model.TableField.Any(t => t.ColumnName == "CreateTime") && @Model.TableField.Any(t => t.ColumnName == "UpdateTime") && @Model.TableField.Any(t => t.ColumnName == "CreateUserId")){
@:{ title: '修改记录', width: 100, showOverflow: 'tooltip', slots: { default: 'row_record' } },
}
{ title: '操作', fixed: 'right', width: 180, showOverflow: true, slots: { default: 'row_buttons' } },