index.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <template>
  2. <custom-layout v-loading="loading" :is_menu="false">
  3. <page :linkList="linkList" :friendList="friendList" :recordList="recordList" :incubatorList="incubatorList" :achieveList="achieveList" :list="newsList" @toActive="toActive"></page>
  4. </custom-layout>
  5. </template>
  6. <script setup>
  7. import { menuList } from '@/layout/site'
  8. import { onBeforeRouteLeave } from 'vue-router'
  9. // 组件
  10. import page from './page.vue'
  11. const $checkRes = inject('$checkRes')
  12. const route = useRoute()
  13. import { UserStore } from '@/store/user'
  14. const userStore = UserStore()
  15. const user = computed(() => userStore.user)
  16. import { cloneDeep, get } from 'lodash-es'
  17. // 接口
  18. import { NewsStore } from '@/store/api/platform/news'
  19. import { DesignStore } from '@/store/api/platform/design'
  20. import { FriendStore } from '@/store/api/platform/friend'
  21. import { IncubatorStore } from '@/store/api/user/incubator'
  22. import { AchievementStore } from '@/store/api/platform/achievement'
  23. import { UtilStore } from '@/store/api/util'
  24. const utilStore = UtilStore()
  25. const newsStore = NewsStore()
  26. const designStore = DesignStore()
  27. const incubatorStore = IncubatorStore()
  28. const friendStore = FriendStore()
  29. const achievementStore = AchievementStore()
  30. // 加载中
  31. const loading = ref(false)
  32. const carouselList = ref([])
  33. const friendList = ref([])
  34. const incubatorList = ref([])
  35. const achieveList = ref([])
  36. const recordList = ref([])
  37. // 导航
  38. const isIncubator = ref(false)
  39. const hasbrain = ref(false)
  40. const linkList = ref([])
  41. // 新闻
  42. const newsList = ref([])
  43. // 分类
  44. const typeList = ref([
  45. { title: '热门高校', list: [] },
  46. { title: '政府部门', list: [] },
  47. { title: '科研机构', list: [] }
  48. ])
  49. const active = ref('0')
  50. // 请求
  51. onMounted(async () => {
  52. loading.value = true
  53. await search()
  54. await searchOther()
  55. await searchNew()
  56. loading.value = false
  57. })
  58. const search = async () => {
  59. for (const val of menuList) {
  60. if (route.name === val.route) val.hover = true
  61. else val.hover = false
  62. }
  63. let menus = cloneDeep(menuList)
  64. // 判断, 如果没有孵化基地角色, 则不显示孵化基地菜单
  65. if (user.value) {
  66. const hasIncubator = get(user.value, 'role', []).find((f) => f === 'Incubator')
  67. if (hasIncubator) isIncubator.value = true
  68. }
  69. if (!isIncubator.value) menus = menus.filter((f) => f.key !== '11')
  70. // 特定用户查看产业大脑
  71. if (user.value && user.value.id == 17) hasbrain.value = true
  72. else hasbrain.value = false
  73. if (!hasbrain.value) menus = menus.filter((f) => f.key !== '12')
  74. linkList.value = menus
  75. }
  76. const searchOther = async () => {
  77. let res
  78. // 合作伙伴
  79. res = await friendStore.list({ is_use: '0' })
  80. if (res.errcode == '0') friendList.value = res.data
  81. // 孵化器列表
  82. res = await incubatorStore.query({ skip: 0, limit: 4, status: '1', is_show: '0' })
  83. if (res.errcode == '0') incubatorList.value = res.data
  84. // 成果列表
  85. res = await achievementStore.query({ skip: 0, limit: 16, status: '1', is_use: '0' })
  86. if (res.errcode == '0') achieveList.value = res.data
  87. // 数据总数
  88. res = await utilStore.toTotal()
  89. if (res.errcode == '0') recordList.value = res.data
  90. // 基础设置
  91. res = await designStore.query({})
  92. if ($checkRes(res)) {
  93. carouselList.value = res.data[0].carouselUrl || []
  94. const friendship = res.data[0].friendship || []
  95. for (const val of friendship) {
  96. for (const tag of typeList.value) {
  97. if (val.type == tag.title) {
  98. tag.list.push(val)
  99. }
  100. }
  101. }
  102. }
  103. }
  104. const searchNew = async () => {
  105. const info = { skip: 0, limit: 8, type: active.value, is_use: '0', status: '1', is_show: '0' }
  106. let res
  107. // 政策新闻
  108. res = await newsStore.query(info)
  109. if (res.errcode == '0') newsList.value = res.data
  110. }
  111. // 新闻类型选择
  112. const toActive = async (item) => {
  113. active.value = item
  114. await searchNew()
  115. }
  116. const scrollTop = ref(0)
  117. onActivated(() => {
  118. // 配置参数依赖于浏览器
  119. document.documentElement.scrollTop = scrollTop.value
  120. })
  121. onBeforeRouteLeave((to, from, next) => {
  122. scrollTop.value = document.documentElement.scrollTop || document.body.scrollTop
  123. next()
  124. })
  125. </script>
  126. <style scoped lang="scss"></style>