使用报表判断用户参数是否为空
This commit is contained in:
parent
b58309a583
commit
58a6035add
|
@ -103,7 +103,7 @@ namespace DM_Weight.ViewModels
|
|||
{
|
||||
get => new DelegateCommand(() =>
|
||||
{
|
||||
GridReportUtil.UserAccount(StartDate, EndDate, User.Nickname ?? "");
|
||||
GridReportUtil.UserAccount(StartDate, EndDate, User == null ? "" : User.Nickname);
|
||||
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue