aboutEnterprises.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <defineListPage v-bind="$attrs" width="150px" ml="40px" :list="list" @emitClick="val => emits('emitClick', val)"></defineListPage>
  3. </template>
  4. <script setup>
  5. import defineListPage from './defineListPage.vue'
  6. defineOptions({name: 'navBar-aboutEnterprises'})
  7. const emits = defineEmits(['emitClick'])
  8. const list = [
  9. {
  10. title: '关于门墩儿',
  11. appList: [
  12. [{ title: '公司介绍', path: '/' }],
  13. [{ title: '人才管理研究院', path: '/' }],
  14. [{ title: '安全保障', path: '/' }],
  15. ],
  16. },
  17. {
  18. title: '公司动态',
  19. appList: [
  20. [{ title: '新闻动态', path: '/' }],
  21. [{ title: '品牌活动', path: '/' }],
  22. ],
  23. },
  24. {
  25. title: '合作与招聘',
  26. appList: [
  27. [{ title: '联系门墩儿', path: '/' }],
  28. [{ title: '加入门墩儿', path: '/' }],
  29. ],
  30. },
  31. {
  32. title: '投资者关系',
  33. appList: [
  34. [{ title: '业绩报告', path: '/' }, { title: '招股文件', path: '/' }],
  35. [{ title: '公告及通函', path: '/' }, { title: '推介会材料', path: '/' }],
  36. [{ title: '企业管治', path: '/' }, { title: '投资者关系联络', path: '/' }],
  37. ],
  38. },
  39. ]
  40. </script>
  41. <style lang="scss" scoped>
  42. </style>