2
0

fix:菜单结构修改

This commit is contained in:
zhongzm
2025-01-17 16:34:56 +08:00
parent db34e59755
commit 6fb3954a4d
5 changed files with 51 additions and 33 deletions

View File

@@ -4,6 +4,7 @@ import { useI18n } from "vue-i18n";
import {
RightOutlined,
DollarOutlined,
FileTextOutlined,
CreditCardOutlined,
ContainerOutlined,
MoneyCollectOutlined,
@@ -40,6 +41,11 @@ const menuItems = [
// title: t('page.Internetdetails.title'),
// path: '/billing/internetdetails'
// },
{
icon: FileTextOutlined,
title: t('page.endpoint.cdrlrecords'),
path: '/billing/cdrlrecords'
}
];
const handleMenuClick = (path: string) => {

View File

@@ -11,7 +11,7 @@ defineOptions({
const { t } = useI18n();
const router = useRouter();
const handleBack = () => {
router.push('/endpoint/clientservice');
router.push('/billing/billservice');
};
//
interface CDRRecord {

View File

@@ -22,11 +22,11 @@ const menuItems = [
title: t('page.endpoint.records'),
path: '/endpoint/records'
},
{
icon: FileTextOutlined,
title: t('page.endpoint.cdrlrecords'),
path: '/endpoint/cdrlrecords'
}
// {
// icon: FileTextOutlined,
// title: t('page.endpoint.cdrlrecords'),
// path: '/endpoint/cdrlrecords'
// }
];
const handleMenuClick = (path: string) => {