diff --git a/mock/sys/menu.ts b/mock/sys/menu.ts index fc6d7c1e..52b61cd2 100644 --- a/mock/sys/menu.ts +++ b/mock/sys/menu.ts @@ -9,7 +9,7 @@ const dashboardRoute = { meta: { title: 'routes.dashboard.welcome', affix: true, - icon: 'ant-design:home-outlined', + icon: 'bx:bx-home', }, }; diff --git a/src/components/Upload/src/BasicUpload.vue b/src/components/Upload/src/BasicUpload.vue index d8ec85bd..a6fdacd4 100644 --- a/src/components/Upload/src/BasicUpload.vue +++ b/src/components/Upload/src/BasicUpload.vue @@ -1,7 +1,7 @@ - + diff --git a/src/layouts/default/header/UserDropdown.tsx b/src/layouts/default/header/UserDropdown.tsx index 4fdf0f6f..195f883f 100644 --- a/src/layouts/default/header/UserDropdown.tsx +++ b/src/layouts/default/header/UserDropdown.tsx @@ -103,7 +103,7 @@ export default defineComponent({ )} diff --git a/src/layouts/default/multitabs/useTabDropdown.ts b/src/layouts/default/multitabs/useTabDropdown.ts index 0e521e22..11067e2f 100644 --- a/src/layouts/default/multitabs/useTabDropdown.ts +++ b/src/layouts/default/multitabs/useTabDropdown.ts @@ -62,40 +62,40 @@ export function useTabDropdown(tabContentProps: TabContentProps) { index === tabStore.getTabsState.length - 1 && tabStore.getLastDragEndIndexState >= 0; const dropMenuList: DropMenu[] = [ { - icon: 'ant-design:reload-outlined', + icon: 'ion:reload-sharp', event: MenuEventEnum.REFRESH_PAGE, text: t('layout.multipleTab.redo'), disabled: refreshDisabled, }, { - icon: 'ant-design:close-outlined', + icon: 'clarity:close-line', event: MenuEventEnum.CLOSE_CURRENT, text: t('layout.multipleTab.close'), disabled: meta?.affix || disabled, divider: true, }, { - icon: 'ant-design:pic-left-outlined', + icon: 'line-md:arrow-close-left', event: MenuEventEnum.CLOSE_LEFT, text: t('layout.multipleTab.closeLeft'), disabled: closeLeftDisabled, divider: false, }, { - icon: 'ant-design:pic-right-outlined', + icon: 'line-md:arrow-close-right', event: MenuEventEnum.CLOSE_RIGHT, text: t('layout.multipleTab.closeRight'), disabled: closeRightDisabled, divider: true, }, { - icon: 'ant-design:pic-center-outlined', + icon: 'dashicons:align-center', event: MenuEventEnum.CLOSE_OTHER, text: t('layout.multipleTab.closeOther'), disabled: disabled, }, { - icon: 'ant-design:line-outlined', + icon: 'clarity:minus-line', event: MenuEventEnum.CLOSE_ALL, text: t('layout.multipleTab.closeAll'), disabled: disabled, diff --git a/src/router/routes/index.ts b/src/router/routes/index.ts index e9f6878c..7886dcd9 100644 --- a/src/router/routes/index.ts +++ b/src/router/routes/index.ts @@ -20,7 +20,7 @@ const MainRoute: AppRouteModule = { component: LAYOUT, redirect: PageEnum.BASE_HOME, meta: { - icon: 'ant-design:home-outlined', + icon: 'bx:bx-home', title: 'routes.dashboard.dashboard', }, }; diff --git a/src/router/routes/modules/dashboard.ts b/src/router/routes/modules/dashboard.ts index 70da9aa7..978250ba 100644 --- a/src/router/routes/modules/dashboard.ts +++ b/src/router/routes/modules/dashboard.ts @@ -8,7 +8,7 @@ const dashboard: AppRouteModule = { component: LAYOUT, redirect: '/dashboard/welcome', meta: { - icon: 'ant-design:home-outlined', + icon: 'bx:bx-home', title: 'routes.dashboard.dashboard', }, children: [ diff --git a/src/router/routes/modules/demo/charts.ts b/src/router/routes/modules/demo/charts.ts index 44fa2f87..82dd9092 100644 --- a/src/router/routes/modules/demo/charts.ts +++ b/src/router/routes/modules/demo/charts.ts @@ -8,7 +8,7 @@ const charts: AppRouteModule = { component: LAYOUT, redirect: '/charts/apexChart', meta: { - icon: 'ant-design:area-chart-outlined', + icon: 'vaadin:spline-area-chart', title: 'routes.demo.charts.charts', }, children: [ diff --git a/src/router/routes/modules/demo/comp.ts b/src/router/routes/modules/demo/comp.ts index e7a691e5..a3be0c25 100644 --- a/src/router/routes/modules/demo/comp.ts +++ b/src/router/routes/modules/demo/comp.ts @@ -8,7 +8,7 @@ const comp: AppRouteModule = { component: LAYOUT, redirect: '/comp/basic', meta: { - icon: 'ant-design:table-outlined', + icon: 'ic:outline-settings-input-component', title: 'routes.demo.comp.comp', }, diff --git a/src/router/routes/modules/demo/editor.ts b/src/router/routes/modules/demo/editor.ts index afab148a..515c135d 100644 --- a/src/router/routes/modules/demo/editor.ts +++ b/src/router/routes/modules/demo/editor.ts @@ -8,7 +8,7 @@ const editor: AppRouteModule = { component: LAYOUT, redirect: '/editor/markdown', meta: { - icon: 'ant-design:table-outlined', + icon: 'carbon:table-split', title: 'routes.demo.editor.editor', }, children: [ diff --git a/src/router/routes/modules/demo/form.ts b/src/router/routes/modules/demo/form.ts index db99ca46..99e7feef 100644 --- a/src/router/routes/modules/demo/form.ts +++ b/src/router/routes/modules/demo/form.ts @@ -8,7 +8,7 @@ const form: AppRouteModule = { component: LAYOUT, redirect: '/form/basic', meta: { - icon: 'ant-design:table-outlined', + icon: 'mdi:form-select', title: 'routes.demo.form.form', }, children: [ diff --git a/src/router/routes/modules/demo/table.ts b/src/router/routes/modules/demo/table.ts index 9280b56b..ea06b2e8 100644 --- a/src/router/routes/modules/demo/table.ts +++ b/src/router/routes/modules/demo/table.ts @@ -8,7 +8,7 @@ const table: AppRouteModule = { component: LAYOUT, redirect: '/table/basic', meta: { - icon: 'ant-design:table-outlined', + icon: 'carbon:table-split', title: 'routes.demo.table.table', }, diff --git a/src/router/routes/modules/home.ts b/src/router/routes/modules/home.ts index daa54740..bbc8b7d8 100644 --- a/src/router/routes/modules/home.ts +++ b/src/router/routes/modules/home.ts @@ -8,7 +8,7 @@ const dashboard: AppRouteModule = { component: LAYOUT, redirect: '/home/welcome', meta: { - icon: 'ant-design:home-outlined', + icon: 'bx:bx-home', title: 'routes.dashboard.welcome', }, children: [ @@ -19,7 +19,7 @@ const dashboard: AppRouteModule = { meta: { title: 'routes.dashboard.welcome', affix: true, - icon: 'ant-design:home-outlined', + icon: 'bx:bx-home', }, }, ], diff --git a/src/views/demo/feat/context-menu/index.vue b/src/views/demo/feat/context-menu/index.vue index 97cc4886..33dd0acb 100644 --- a/src/views/demo/feat/context-menu/index.vue +++ b/src/views/demo/feat/context-menu/index.vue @@ -25,14 +25,14 @@ items: [ { label: 'New', - icon: 'ant-design:plus-outlined', + icon: 'bi:plus', handler: () => { createMessage.success('click new'); }, }, { label: 'Open', - icon: 'ant-design:folder-open-filled', + icon: 'bx:bxs-folder-open', handler: () => { createMessage.success('click open'); }, @@ -47,12 +47,12 @@ items: [ { label: 'New', - icon: 'ant-design:plus-outlined', + icon: 'bi:plus', children: [ { label: 'New1-1', - icon: 'ant-design:plus-outlined', + icon: 'bi:plus', divider: true, children: [ { @@ -69,7 +69,7 @@ }, { label: 'New1-2', - icon: 'ant-design:plus-outlined', + icon: 'bi:plus', }, ], }, diff --git a/src/views/demo/page/account/center/data.tsx b/src/views/demo/page/account/center/data.tsx index 4a336d9a..7ab48e89 100644 --- a/src/views/demo/page/account/center/data.tsx +++ b/src/views/demo/page/account/center/data.tsx @@ -19,10 +19,10 @@ export const tags: string[] = [ '前端开发', 'vue3', ]; - +; export const teams: ListItem[] = [ { - icon: 'ant-design:alipay-circle-outlined', + icon: 'ri:alipay-fill', title: '科学搬砖组', color: '#ff4000', }, @@ -32,22 +32,22 @@ export const teams: ListItem[] = [ color: '#7c51b8', }, { - icon: 'ant-design:alipay-circle-outlined', + icon: 'ri:alipay-fill', title: '高逼格设计', color: '#00adf7', }, { - icon: 'ant-design:codepen-circle-filled', + icon: 'jam:codepen-circle', title: '程序员日常', color: '#00adf7', }, { - icon: 'ant-design:behance-square-filled', + icon: 'fa:behance-square', title: '科学搬砖组', color: '#7c51b8', }, { - icon: 'ant-design:dribbble-circle-filled', + icon: 'jam:codepen-circle', title: '程序员日常', color: '#ff4000', }, @@ -55,15 +55,15 @@ export const teams: ListItem[] = [ export const details: ListItem[] = [ { - icon: 'ant-design:contacts-outlined', + icon: 'ic:outline-contacts', title: '交互专家', }, { - icon: 'ant-design:cluster-outlined', + icon: 'grommet-icons:cluster', title: '某某某事业群', }, { - icon: 'ant-design:home-outlined', + icon: 'bx:bx-home-circle', title: '福建省厦门市', }, ]; @@ -87,9 +87,9 @@ export const achieveList: TabItem[] = [ ]; export const actions: any[] = [ - { icon: 'ant-design:star-outlined', text: '156', color: '#018ffb' }, - { icon: 'ant-design:like-filled', text: '156', color: '#459ae8' }, - { icon: 'ant-design:message-filled', text: '2', color: '#42d27d' }, + { icon: 'clarity:star-line', text: '156', color: '#018ffb' }, + { icon: 'bx:bxs-like', text: '156', color: '#459ae8' }, + { icon: 'bx:bxs-message-dots', text: '2', color: '#42d27d' }, ]; export const articleList = (() => { diff --git a/src/views/demo/page/account/setting/BaseSetting.vue b/src/views/demo/page/account/setting/BaseSetting.vue index 1167435f..54fa63c1 100644 --- a/src/views/demo/page/account/setting/BaseSetting.vue +++ b/src/views/demo/page/account/setting/BaseSetting.vue @@ -9,9 +9,7 @@
头像
- + diff --git a/src/views/demo/page/account/setting/data.ts b/src/views/demo/page/account/setting/data.ts index 6c725e1a..01478a50 100644 --- a/src/views/demo/page/account/setting/data.ts +++ b/src/views/demo/page/account/setting/data.ts @@ -108,7 +108,7 @@ export const accountBindList: ListItem[] = [ title: '绑定淘宝', description: '当前未绑定淘宝账号', extra: '绑定', - avatar: 'ant-design:taobao-outlined', + avatar: 'ri:taobao-fill', color: '#ff4000', }, { @@ -116,7 +116,7 @@ export const accountBindList: ListItem[] = [ title: '绑定支付宝', description: '当前未绑定支付宝账号', extra: '绑定', - avatar: 'ant-design:alipay-outlined', + avatar: 'fa-brands:alipay', color: '#2eabff', }, { diff --git a/src/views/demo/page/list/search/data.tsx b/src/views/demo/page/list/search/data.tsx index 50766f46..e2a163f6 100644 --- a/src/views/demo/page/list/search/data.tsx +++ b/src/views/demo/page/list/search/data.tsx @@ -15,9 +15,9 @@ export const searchList = (() => { })(); export const actions: any[] = [ - { icon: 'ant-design:star-outlined', text: '156', color: '#018ffb' }, - { icon: 'ant-design:like-filled', text: '156', color: '#459ae8' }, - { icon: 'ant-design:message-filled', text: '2', color: '#42d27d' }, + { icon: 'clarity:star-line', text: '156', color: '#018ffb' }, + { icon: 'bx:bxs-like', text: '156', color: '#459ae8' }, + { icon: 'bx:bxs-message-dots', text: '2', color: '#42d27d' }, ]; export const schemas: FormSchema[] = [ diff --git a/src/views/demo/table/FixedColumn.vue b/src/views/demo/table/FixedColumn.vue index 41a142a0..81ecb80a 100644 --- a/src/views/demo/table/FixedColumn.vue +++ b/src/views/demo/table/FixedColumn.vue @@ -6,7 +6,7 @@ :actions="[ { label: '删除', - icon: 'ant-design:area-chart-outlined', + icon: 'ic:outline-delete-outline', onClick: handleDelete.bind(null, record), }, ]" diff --git a/src/views/demo/tree/EditTree.vue b/src/views/demo/tree/EditTree.vue index 4e46cdad..c737314c 100644 --- a/src/views/demo/tree/EditTree.vue +++ b/src/views/demo/tree/EditTree.vue @@ -29,14 +29,14 @@ handler: () => { console.log('点击了新增', node); }, - icon: 'ant-design:plus-outlined', + icon: 'bi:plus', }, { label: '删除', handler: () => { console.log('点击了删除', node); }, - icon: 'ant-design:folder-open-filled', + icon: 'bx:bxs-folder-open', }, ]; }