|
@@ -12,12 +12,12 @@ const menuList = [
|
|
|
icon: 'icon_data_fill_b',
|
|
icon: 'icon_data_fill_b',
|
|
|
path: '/dashboard'
|
|
path: '/dashboard'
|
|
|
},
|
|
},
|
|
|
- {
|
|
|
|
|
- index: '2',
|
|
|
|
|
- label: 'Quote',
|
|
|
|
|
- icon: 'icon_quote__fill_b',
|
|
|
|
|
- path: '/booking/detail'
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ // {
|
|
|
|
|
+ // index: '2',
|
|
|
|
|
+ // label: 'Quote',
|
|
|
|
|
+ // icon: 'icon_quote__fill_b',
|
|
|
|
|
+ // path: '/booking/detail'
|
|
|
|
|
+ // },
|
|
|
{
|
|
{
|
|
|
index: '3',
|
|
index: '3',
|
|
|
label: 'Booking',
|
|
label: 'Booking',
|
|
@@ -30,12 +30,12 @@ const menuList = [
|
|
|
icon: 'icon_tracking__fill_b',
|
|
icon: 'icon_tracking__fill_b',
|
|
|
path: '/tracking'
|
|
path: '/tracking'
|
|
|
},
|
|
},
|
|
|
- {
|
|
|
|
|
- index: '5',
|
|
|
|
|
- label: 'Report',
|
|
|
|
|
- icon: 'icon_report__fill_b',
|
|
|
|
|
- path: '/tracking/detail'
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ // {
|
|
|
|
|
+ // index: '5',
|
|
|
|
|
+ // label: 'Report',
|
|
|
|
|
+ // icon: 'icon_report__fill_b',
|
|
|
|
|
+ // path: '/tracking/detail'
|
|
|
|
|
+ // },
|
|
|
{
|
|
{
|
|
|
index: '6',
|
|
index: '6',
|
|
|
label: 'System Management',
|
|
label: 'System Management',
|
|
@@ -43,21 +43,21 @@ const menuList = [
|
|
|
path: '/test5',
|
|
path: '/test5',
|
|
|
type: 'list',
|
|
type: 'list',
|
|
|
children: [
|
|
children: [
|
|
|
- {
|
|
|
|
|
- index: '5-1',
|
|
|
|
|
- label: 'Account Management',
|
|
|
|
|
- path: '/public-tracking'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- index: '5-2',
|
|
|
|
|
- label: 'Permission Management',
|
|
|
|
|
- path: '/public-tracking/detail'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- index: '5-3',
|
|
|
|
|
- label: 'System Configuration',
|
|
|
|
|
- path: '/login'
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ // {
|
|
|
|
|
+ // index: '5-1',
|
|
|
|
|
+ // label: 'Account Management',
|
|
|
|
|
+ // path: '/public-tracking'
|
|
|
|
|
+ // },
|
|
|
|
|
+ // {
|
|
|
|
|
+ // index: '5-2',
|
|
|
|
|
+ // label: 'Permission Management',
|
|
|
|
|
+ // path: '/public-tracking/detail'
|
|
|
|
|
+ // },
|
|
|
|
|
+ // {
|
|
|
|
|
+ // index: '5-3',
|
|
|
|
|
+ // label: 'System Configuration',
|
|
|
|
|
+ // path: '/login'
|
|
|
|
|
+ // },
|
|
|
{
|
|
{
|
|
|
index: '5-4',
|
|
index: '5-4',
|
|
|
label: 'Operation Log',
|
|
label: 'Operation Log',
|
|
@@ -75,11 +75,8 @@ const changeRouter = (path: string) => {
|
|
|
router.push({ path })
|
|
router.push({ path })
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-const emit = defineEmits<{ collapse: [boolean] }>()
|
|
|
|
|
-
|
|
|
|
|
const handleCollapseClick = () => {
|
|
const handleCollapseClick = () => {
|
|
|
isCollapse.value = !isCollapse.value
|
|
isCollapse.value = !isCollapse.value
|
|
|
- // emit('collapse', isCollapse.value)
|
|
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|