@page "/tenants" 租户 公司名称 邮箱(账号) 姓名 电话 创建时间 备注 操作 @context.CorporateName @context.Mailbox @context.FullName @context.Telephone @context.CreationTime @context.Remarks 修改 授权 重置密码 删除 Hide position when Breakpoint=Xs Show Loading @code { private bool _hidePosition; private bool _loading; private IEnumerable Models = new List(); protected override void OnInitialized() { Models = new List() { new TenantModel() { Id = Guid.NewGuid(), CorporateName = "某某某公司", CreationTime = DateTime.Now, FullName = "小张", Mailbox = "xiaozhang@email.com", Telephone = "13563468941" }, }; } }