|
@@ -0,0 +1,32 @@
|
|
|
+<template>
|
|
|
+ <defineListPage v-bind="$attrs" width="120px" ml="60px" :list="list" @emitClick="val => emits('emitClick', val)"></defineListPage>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup>
|
|
|
+import defineListPage from './defineListPage.vue'
|
|
|
+defineOptions({name: 'navBar-resourceCentre'})
|
|
|
+const emits = defineEmits(['emitClick'])
|
|
|
+
|
|
|
+const list = [
|
|
|
+ {
|
|
|
+ title: '专业洞察',
|
|
|
+ appList: [
|
|
|
+ [{ title: '文章', path: '/' }],
|
|
|
+ [{ title: '研究报告', path: '/' }],
|
|
|
+ [{ title: '直播视频', path: '/' }],
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '热门话题',
|
|
|
+ appList: [
|
|
|
+ [{ title: '人力资源数字化升级全景指南', path: '/', width: 'auto' }],
|
|
|
+ [{ title: '如何应用运营思维,提升组织招聘能力?', path: '/', width: 'auto' }],
|
|
|
+ [{ title: '全面解码“Z时代”校园招聘,制胜校招!', path: '/', width: 'auto' }],
|
|
|
+ [{ title: '招聘+测评如何为招聘提效?', path: '/', width: 'auto' }],
|
|
|
+ [{ title: '年终如何复盘与规划,让人才管理提质提效?', path: '/', width: 'auto' }],
|
|
|
+ ]
|
|
|
+ },
|
|
|
+]
|
|
|
+</script>
|
|
|
+<style lang="scss" scoped>
|
|
|
+</style>
|