feat:图标更改
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import {UserOutlined,HomeOutlined,MoneyCollectOutlined,ClusterOutlined} from "@ant-design/icons-vue";
|
import {UserOutlined,HomeOutlined,WalletOutlined,ClusterOutlined} from "@ant-design/icons-vue";
|
||||||
import {useRouterPush} from "@/hooks/common";
|
import {useRouterPush} from "@/hooks/common";
|
||||||
|
|
||||||
const { routerPushByKey } = useRouterPush();
|
const { routerPushByKey } = useRouterPush();
|
||||||
@@ -22,7 +22,7 @@ defineOptions({
|
|||||||
</div>
|
</div>
|
||||||
<div class="flex-item">
|
<div class="flex-item">
|
||||||
<ButtonIcon>
|
<ButtonIcon>
|
||||||
<MoneyCollectOutlined class="text-icon-large" @click="routerPushByKey('billing_billservice')"/>
|
<WalletOutlined class="text-icon-large" @click="routerPushByKey('billing_billservice')"/>
|
||||||
</ButtonIcon>
|
</ButtonIcon>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-item">
|
<div class="flex-item">
|
||||||
|
|||||||
@@ -330,7 +330,7 @@ export const customRoutes: GeneratedRoute[] = [
|
|||||||
meta: {
|
meta: {
|
||||||
title: '账单',
|
title: '账单',
|
||||||
i18nKey: 'view.billing',
|
i18nKey: 'view.billing',
|
||||||
icon: 'ant-design:account-book-outlined',
|
icon: 'ant-design:container-outlined',
|
||||||
order: 13,
|
order: 13,
|
||||||
//hideInMenu: true
|
//hideInMenu: true
|
||||||
},
|
},
|
||||||
@@ -354,7 +354,7 @@ export const customRoutes: GeneratedRoute[] = [
|
|||||||
meta: {
|
meta: {
|
||||||
title: '充值服务',
|
title: '充值服务',
|
||||||
i18nKey: 'view.recharge_rechargeservice',
|
i18nKey: 'view.recharge_rechargeservice',
|
||||||
icon: 'ant-design:money-collect-outlined',
|
icon: 'ant-design:wallet-outlined',
|
||||||
order: 2,
|
order: 2,
|
||||||
// hideInMenu: true
|
// hideInMenu: true
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import {
|
|||||||
FileTextOutlined,
|
FileTextOutlined,
|
||||||
CreditCardOutlined,
|
CreditCardOutlined,
|
||||||
ContainerOutlined,
|
ContainerOutlined,
|
||||||
MoneyCollectOutlined,
|
WalletOutlined,
|
||||||
|
|
||||||
} from '@ant-design/icons-vue';
|
} from '@ant-design/icons-vue';
|
||||||
|
|
||||||
@@ -16,7 +16,7 @@ const router = useRouter();
|
|||||||
|
|
||||||
const menuItems = [
|
const menuItems = [
|
||||||
{
|
{
|
||||||
icon: MoneyCollectOutlined,
|
icon: WalletOutlined,
|
||||||
title: t('page.recharge.recharge'),
|
title: t('page.recharge.recharge'),
|
||||||
path: '/billing/recharge'
|
path: '/billing/recharge'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user