diff --git a/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Post/PostCreateInputVo.cs b/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Post/PostCreateInputVo.cs index 2d50b107..0dc73506 100644 --- a/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Post/PostCreateInputVo.cs +++ b/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Post/PostCreateInputVo.cs @@ -8,7 +8,7 @@ namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Post public Guid Id { get; set; } public DateTime CreationTime { get; set; } = DateTime.Now; public long? CreatorId { get; set; } - public Guid State { get; set; } + public bool? State { get; set; } public string PostCode { get; set; } = string.Empty; public string PostName { get; set; } = string.Empty; public string? Remark { get; set; } diff --git a/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Post/PostUpdateInputVo.cs b/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Post/PostUpdateInputVo.cs index d789ba0f..2304f8ac 100644 --- a/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Post/PostUpdateInputVo.cs +++ b/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Post/PostUpdateInputVo.cs @@ -5,7 +5,7 @@ namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Post public Guid Id { get; set; } public DateTime CreationTime { get; set; } = DateTime.Now; public Guid? CreatorId { get; set; } - public bool State { get; set; } + public bool? State { get; set; } public string PostCode { get; set; } = string.Empty; public string PostName { get; set; } = string.Empty; public string? Remark { get; set; } diff --git a/Yi.RuoYi.Vue3/src/views/system/user/index.vue b/Yi.RuoYi.Vue3/src/views/system/user/index.vue index 2816513d..4a38687a 100644 --- a/Yi.RuoYi.Vue3/src/views/system/user/index.vue +++ b/Yi.RuoYi.Vue3/src/views/system/user/index.vue @@ -528,16 +528,16 @@ function submitForm() { proxy.$refs["userRef"].validate(valid => { if (valid) { if (form.value.id != undefined) { - updateUser(form.value.id,form.value).then(response => { + updateUser(form.value.id,form.value).then(async response => { proxy.$modal.msgSuccess("修改成功"); open.value = false; - getList(); + await getList(); }); } else { - addUser(form.value).then(response => { + addUser(form.value).then(async response => { proxy.$modal.msgSuccess("新增成功"); open.value = false; - getList(); + await getList(); }); } }