diff --git a/src/views/account/Center/index.vue b/src/views/account/Center/index.vue
index becf59e7..89d62d93 100644
--- a/src/views/account/Center/index.vue
+++ b/src/views/account/Center/index.vue
@@ -140,8 +140,10 @@
@@ -399,6 +401,8 @@ function getViews() {
display: flex;
margin-top: 24px;
flex-wrap: wrap;
+ gap: 24px;
+
.content-item {
margin-right: 24px;
@@ -438,9 +442,10 @@ function getViews() {
}
.account-card {
- margin-right: 24px;
width: 415px;
background-image: url(/images/notice/dingtalk-background.png);
+ border-right: 1px solid #f0f0f0;
+ border-bottom: 1px solid #f0f0f0;
display: flex;
align-items: center;
justify-content: space-between;
diff --git a/src/views/system/Apply/Save/components/EditForm.vue b/src/views/system/Apply/Save/components/EditForm.vue
index 01a7b8cf..11ba5baa 100644
--- a/src/views/system/Apply/Save/components/EditForm.vue
+++ b/src/views/system/Apply/Save/components/EditForm.vue
@@ -1065,12 +1065,10 @@
>
>) {
} else if (info.file.status === 'done') {
info.file.url = info.file.response?.result;
form.uploadLoading = false;
- form.data.sso.configuration.oauth2.logoUrl = info.file.response?.result;
+ form.data.logoUrl = info.file.response?.result;
} else if (info.file.status === 'error') {
form.uploadLoading = false;
message.error('logo上传失败,请稍后再试');
diff --git a/src/views/user/Login/index.vue b/src/views/user/Login/index.vue
index f313f2a3..9ea0a1fb 100644
--- a/src/views/user/Login/index.vue
+++ b/src/views/user/Login/index.vue
@@ -143,7 +143,7 @@
style="width: 32px; height: 33px"
:alt="item.name"
:src="
- iconMap.get(
+ item.logoUrl || iconMap.get(
item.provider,
) || defaultImg
"