From ce6867994ad19dc42e279ef8429b193dd043bbb6 Mon Sep 17 00:00:00 2001 From: dap <15891557205@163.com> Date: Wed, 18 Jun 2025 11:16:26 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E4=B8=AA=E4=BA=BA=E4=B8=AD?= =?UTF-8?q?=E5=BF=83=20=E8=B4=A6=E5=8F=B7=E7=BB=91=E5=AE=9A=20=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F/=E9=80=BB=E8=BE=91=E9=87=8D=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../_core/profile/components/account-bind.vue | 143 +++++++++--------- 1 file changed, 70 insertions(+), 73 deletions(-) diff --git a/apps/web-antd/src/views/_core/profile/components/account-bind.vue b/apps/web-antd/src/views/_core/profile/components/account-bind.vue index e7949a4a..0da901c6 100644 --- a/apps/web-antd/src/views/_core/profile/components/account-bind.vue +++ b/apps/web-antd/src/views/_core/profile/components/account-bind.vue @@ -5,15 +5,7 @@ import type { SocialInfo } from '#/api/system/social/model'; import { onMounted, ref } from 'vue'; -import { - Alert, - Avatar, - Card, - List, - ListItem, - Modal, - Tooltip, -} from 'ant-design-vue'; +import { Alert, Avatar, Card, Empty, Modal, Tooltip } from 'ant-design-vue'; import { authUnbinding } from '#/api'; import { socialList } from '#/api/system/social'; @@ -68,78 +60,83 @@ function handleUnbind(record: BindItemWithInfo) { type: 'warning', }); } + +const simpleImage = Empty.PRESENTED_IMAGE_SIMPLE;