|
@@ -0,0 +1,44 @@
|
|
|
+<template>
|
|
|
+ <defineListPage v-bind="$attrs" width="150px" ml="40px" :list="list" @emitClick="val => emits('emitClick', val)"></defineListPage>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup>
|
|
|
+import defineListPage from './defineListPage.vue'
|
|
|
+defineOptions({name: 'navBar-aboutEnterprises'})
|
|
|
+const emits = defineEmits(['emitClick'])
|
|
|
+
|
|
|
+const list = [
|
|
|
+ {
|
|
|
+ title: '关于门墩儿',
|
|
|
+ appList: [
|
|
|
+ [{ title: '公司介绍', path: '/' }],
|
|
|
+ [{ title: '人才管理研究院', path: '/' }],
|
|
|
+ [{ title: '安全保障', path: '/' }],
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '公司动态',
|
|
|
+ appList: [
|
|
|
+ [{ title: '新闻动态', path: '/' }],
|
|
|
+ [{ title: '品牌活动', path: '/' }],
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '合作与招聘',
|
|
|
+ appList: [
|
|
|
+ [{ title: '联系门墩儿', path: '/' }],
|
|
|
+ [{ title: '加入门墩儿', path: '/' }],
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '投资者关系',
|
|
|
+ appList: [
|
|
|
+ [{ title: '业绩报告', path: '/' }, { title: '招股文件', path: '/' }],
|
|
|
+ [{ title: '公告及通函', path: '/' }, { title: '推介会材料', path: '/' }],
|
|
|
+ [{ title: '企业管治', path: '/' }, { title: '投资者关系联络', path: '/' }],
|
|
|
+ ],
|
|
|
+ },
|
|
|
+]
|
|
|
+</script>
|
|
|
+<style lang="scss" scoped>
|
|
|
+</style>
|