2022-07-04 17:53:54 +08:00
|
|
|
<!--
|
|
|
|
* @Author: hisense.liangjunhua
|
|
|
|
* @Date: 2022-06-23 16:41:49
|
2022-10-13 17:07:51 +08:00
|
|
|
* @LastEditors: Light
|
|
|
|
* @LastEditTime: 2022-10-13 16:40:15
|
2022-07-04 17:53:54 +08:00
|
|
|
* @Description: 告诉大家这是什么
|
|
|
|
-->
|
2022-06-14 09:32:49 +08:00
|
|
|
<template>
|
|
|
|
<div class="newHome">
|
|
|
|
<new-home-header></new-home-header>
|
|
|
|
<navigation></navigation>
|
|
|
|
<navigation2></navigation2>
|
|
|
|
<capability-convergence></capability-convergence>
|
|
|
|
<popular-ability></popular-ability>
|
|
|
|
<latest-capabilities></latest-capabilities>
|
2022-07-04 17:53:54 +08:00
|
|
|
<resource-aggregation></resource-aggregation>
|
2022-06-14 09:32:49 +08:00
|
|
|
<recommendation-ability></recommendation-ability>
|
|
|
|
<work-dynamics></work-dynamics>
|
|
|
|
<home-footer></home-footer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
import NewHomeHeader from '@/views/home/components/header'
|
|
|
|
import Navigation from '@/views/newHome/components/Navigation'
|
|
|
|
import Navigation2 from '@/views/newHome/components/Navigation2'
|
|
|
|
import CapabilityConvergence from '@/views/newHome/components/CapabilityConvergence'
|
|
|
|
import PopularAbility from '@/views/newHome/components/PopularAbility'
|
|
|
|
import LatestCapabilities from '@/views/newHome/components/LatestCapabilities'
|
2022-07-04 17:53:54 +08:00
|
|
|
import ResourceAggregation from '@/views/abilityStatistics/components/ResourceAggregation.vue'
|
2022-06-14 09:32:49 +08:00
|
|
|
import RecommendationAbility from '@/views/newHome/components/RecommendationAbility'
|
|
|
|
import WorkDynamics from '@/views/newHome/components/WorkDynamics'
|
|
|
|
import HomeFooter from '@/views/newHome/components/Footer'
|
|
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
2022-10-13 17:07:51 +08:00
|
|
|
@font-face {
|
|
|
|
font-family: 'text-typeface';
|
|
|
|
src: url('~@/assets/newHome/font/text-typeface.otf');
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: 'num-typeface';
|
|
|
|
src: url('~@/assets/newHome/font/num-typeface.otf');
|
|
|
|
}
|
|
|
|
.newHome {
|
|
|
|
font-family: text-typeface;
|
|
|
|
.num {
|
|
|
|
font-family: num-typeface;
|
2022-07-04 17:53:54 +08:00
|
|
|
}
|
2022-10-13 17:07:51 +08:00
|
|
|
}
|
|
|
|
.resource-aggregation {
|
|
|
|
background: #fff;
|
|
|
|
}
|
2022-06-14 09:32:49 +08:00
|
|
|
</style>
|