Skip to content

Commit 5dc8226

Browse files
committed
fix: 整体图标调整
1 parent 7bae4c3 commit 5dc8226

File tree

19 files changed

+45
-47
lines changed

19 files changed

+45
-47
lines changed

mock/sys/menu.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const dashboardRoute = {
99
meta: {
1010
title: 'routes.dashboard.welcome',
1111
affix: true,
12-
icon: 'ant-design:home-outlined',
12+
icon: 'bx:bx-home',
1313
},
1414
};
1515

src/components/Upload/src/BasicUpload.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div>
33
<a-button-group>
4-
<a-button type="primary" @click="openUploadModal" preIcon="ant-design:cloud-upload-outlined">
4+
<a-button type="primary" @click="openUploadModal" preIcon="carbon:cloud-upload">
55
{{ t('component.upload.upload') }}
66
</a-button>
77
<Tooltip placement="bottom" v-if="showPreview">
@@ -10,7 +10,7 @@
1010
<template v-if="fileListRef.length">{{ fileListRef.length }}</template>
1111
</template>
1212
<a-button @click="openPreviewModal">
13-
<Icon icon="ant-design:eye-outlined" />
13+
<Icon icon="bi:eye" />
1414
<template v-if="fileListRef.length && showPreviewNumber">
1515
{{ fileListRef.length }}
1616
</template>

src/layouts/default/header/UserDropdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export default defineComponent({
103103
<MenuItem
104104
key="loginOut"
105105
text={t('layout.header.dropdownItemLoginOut')}
106-
icon="ant-design:poweroff-outlined"
106+
icon="carbon:power"
107107
/>
108108
</>
109109
)}

src/layouts/default/multitabs/useTabDropdown.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,40 +62,40 @@ export function useTabDropdown(tabContentProps: TabContentProps) {
6262
index === tabStore.getTabsState.length - 1 && tabStore.getLastDragEndIndexState >= 0;
6363
const dropMenuList: DropMenu[] = [
6464
{
65-
icon: 'ant-design:reload-outlined',
65+
icon: 'ion:reload-sharp',
6666
event: MenuEventEnum.REFRESH_PAGE,
6767
text: t('layout.multipleTab.redo'),
6868
disabled: refreshDisabled,
6969
},
7070
{
71-
icon: 'ant-design:close-outlined',
71+
icon: 'clarity:close-line',
7272
event: MenuEventEnum.CLOSE_CURRENT,
7373
text: t('layout.multipleTab.close'),
7474
disabled: meta?.affix || disabled,
7575
divider: true,
7676
},
7777
{
78-
icon: 'ant-design:pic-left-outlined',
78+
icon: 'line-md:arrow-close-left',
7979
event: MenuEventEnum.CLOSE_LEFT,
8080
text: t('layout.multipleTab.closeLeft'),
8181
disabled: closeLeftDisabled,
8282
divider: false,
8383
},
8484
{
85-
icon: 'ant-design:pic-right-outlined',
85+
icon: 'line-md:arrow-close-right',
8686
event: MenuEventEnum.CLOSE_RIGHT,
8787
text: t('layout.multipleTab.closeRight'),
8888
disabled: closeRightDisabled,
8989
divider: true,
9090
},
9191
{
92-
icon: 'ant-design:pic-center-outlined',
92+
icon: 'dashicons:align-center',
9393
event: MenuEventEnum.CLOSE_OTHER,
9494
text: t('layout.multipleTab.closeOther'),
9595
disabled: disabled,
9696
},
9797
{
98-
icon: 'ant-design:line-outlined',
98+
icon: 'clarity:minus-line',
9999
event: MenuEventEnum.CLOSE_ALL,
100100
text: t('layout.multipleTab.closeAll'),
101101
disabled: disabled,

src/router/routes/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const MainRoute: AppRouteModule = {
2020
component: LAYOUT,
2121
redirect: PageEnum.BASE_HOME,
2222
meta: {
23-
icon: 'ant-design:home-outlined',
23+
icon: 'bx:bx-home',
2424
title: 'routes.dashboard.dashboard',
2525
},
2626
};

src/router/routes/modules/dashboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const dashboard: AppRouteModule = {
88
component: LAYOUT,
99
redirect: '/dashboard/welcome',
1010
meta: {
11-
icon: 'ant-design:home-outlined',
11+
icon: 'bx:bx-home',
1212
title: 'routes.dashboard.dashboard',
1313
},
1414
children: [

src/router/routes/modules/demo/charts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const charts: AppRouteModule = {
88
component: LAYOUT,
99
redirect: '/charts/apexChart',
1010
meta: {
11-
icon: 'ant-design:area-chart-outlined',
11+
icon: 'vaadin:spline-area-chart',
1212
title: 'routes.demo.charts.charts',
1313
},
1414
children: [

src/router/routes/modules/demo/comp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const comp: AppRouteModule = {
88
component: LAYOUT,
99
redirect: '/comp/basic',
1010
meta: {
11-
icon: 'ant-design:table-outlined',
11+
icon: 'ic:outline-settings-input-component',
1212
title: 'routes.demo.comp.comp',
1313
},
1414

src/router/routes/modules/demo/editor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const editor: AppRouteModule = {
88
component: LAYOUT,
99
redirect: '/editor/markdown',
1010
meta: {
11-
icon: 'ant-design:table-outlined',
11+
icon: 'carbon:table-split',
1212
title: 'routes.demo.editor.editor',
1313
},
1414
children: [

src/router/routes/modules/demo/form.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const form: AppRouteModule = {
88
component: LAYOUT,
99
redirect: '/form/basic',
1010
meta: {
11-
icon: 'ant-design:table-outlined',
11+
icon: 'mdi:form-select',
1212
title: 'routes.demo.form.form',
1313
},
1414
children: [

0 commit comments

Comments
 (0)