Browse Source
fix: 修复setting模块
fix:
- 修复setting模块空异常
- setting ui界面描述信息位置
pull/89/head
WangJunZzz
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
3 deletions
-
aspnet-core/modules/BasicManagement/src/Lion.AbpPro.BasicManagement.Application/Settings/SettingAppService.cs
-
vben28/src/views/admin/settings/Setting.vue
|
|
@ -46,10 +46,10 @@ namespace Lion.AbpPro.BasicManagement.Settings |
|
|
|
|
|
|
|
|
item.SettingItemOutput.Add(new SettingItemOutput( |
|
|
item.SettingItemOutput.Add(new SettingItemOutput( |
|
|
itemDefinition.Name, |
|
|
itemDefinition.Name, |
|
|
itemDefinition.DisplayName.Localize(_factory), |
|
|
itemDefinition.DisplayName?.Localize(_factory), |
|
|
value, |
|
|
value, |
|
|
type, |
|
|
type, |
|
|
itemDefinition.Description.Localize(_factory))); |
|
|
itemDefinition.Description?.Localize(_factory))); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -18,9 +18,9 @@ |
|
|
:checked="!(setting.value == 'false' || setting.value == false)" |
|
|
:checked="!(setting.value == 'false' || setting.value == false)" |
|
|
@update:checked="(val) => (setting.value = val)" |
|
|
@update:checked="(val) => (setting.value = val)" |
|
|
> |
|
|
> |
|
|
{{ setting.description }} |
|
|
|
|
|
</a-checkbox> |
|
|
</a-checkbox> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
{{ setting.description }} |
|
|
</a-form-item> |
|
|
</a-form-item> |
|
|
|
|
|
|
|
|
<a-button |
|
|
<a-button |
|
|
|