123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- <template>
- <!-- 页面头部 -->
- <HomePageHead></HomePageHead>
- <!-- Banner1 -->
- <HomeBanner1></HomeBanner1>
- <!-- 面包屑导航 -->
- <div class="breadcrumb">
- <div class="inner">
- <span class="location">当前位置:</span>
- <el-breadcrumb :separator-icon="ArrowRight">
- <el-breadcrumb-item :to="{ path: '/' }">首页</el-breadcrumb-item>
- <el-breadcrumb-item :to="{ path: '/primaryNavigation/newsList' }">三农之窗</el-breadcrumb-item>
- <el-breadcrumb-item :to="{ path: '/primaryNavigation/newsDetail/newsDetail' }">文章详情</el-breadcrumb-item>
- </el-breadcrumb>
- </div>
- </div>
- <!-- 资讯列表 -->
- <div class="newsDetail">
- <div class="inner">
- <div class="innerLeft">
- <div class="LeftTop">
- <h1>{{ newsDetail.title }}</h1>
- <p>
- 来源: <span>{{ newsDetail.author }}</span>
- <span>{{ newsDetail.updated_at }}</span>
- 浏览量: <span>{{ newsDetail.hits }}</span>
- </p>
- <img :src="newsDetail.imgurl" alt="">
- </div>
- <div class="leftBottom">
- {{newsDetail.content }}
- <!-- <h3>“逆周期调节”是什么? </h3>
- <p>这次发布会将重点聚焦“财政政策逆周期调节力度”,那什么是逆周期调节?</p>
- <p>逆周期调节是指政府根据经济周期阶段,通过政策工具和措施让整个经济周期的波动性平缓,更好促进经济发展。财政政策就是其中的重要一类。</p>
- <p>当前,我国经济的基本面及市场广阔、经济韧性强、潜力大等有利条件并未改变。同
- 时,经济运行出现一些新的情况和问题。为了更好促进经济发展,近年来,我国坚持实施 积极的财政政策,通过增加财政支出、实施减税降费等方式,实现政府投资的扩大和消费
- 潜能的释放,促进了经济增长、增加就业和扩大内需等。 专家认为,财政政策逆周期调节对于稳定经济增长、促进就业、控制通胀和稳定金融
- 市场具有重要意义。随着国民经济发展不断变化,相应的,财政政策也会根据经济形势的 变化来灵活调整,这样才能更好实现经济的平稳发展。</p>
- <h3>积极财政政策持续加力 推动经济高质量发展</h3>
- <p>今年,我国继续实施积极的财政政策,通过组合运用多种政策工具,促进经济持续回 升向好。那么,财政政策工具箱里都有哪些“宝贝” 国家的钱袋子又投向了哪些领域呢?</p>
- <h3>政策亮点——超长期特别国债</h3>
- <p>到财政政策工具箱,今年最大的亮点要数超长期特别国债。10000亿元超长期特别
- 国债,专项用于“两重”,也就是国家重大战略实施和重点领域安全能力建设。截至7月底,超长期特别国债已累计发行4180亿元。</p>
- <p>不仅如此,为了更好支持大规模设备更新和消费品以旧换新行动,万亿超长期特别国 债中有约3000亿元加力支持重点领域设备更新,进一步提升地方消费品以旧换新的能力。</p> -->
- </div>
- </div>
- <div class="innerRight">
- <!-- 热点资讯1 -->
- <DetailHotNews></DetailHotNews>
- <!-- 热点资讯2 -->
- <DetailHotNews2></DetailHotNews2>
- </div>
- </div>
- </div>
- <!-- 页面底部 -->
- <HomeFoot></HomeFoot>
- </template>
- <script setup>
- import { onMounted } from 'vue'
- import { ElBreadcrumb, ElBreadcrumbItem } from 'element-plus'
- import { ArrowRight } from '@element-plus/icons-vue'
- const nuxtApp = useNuxtApp();
- const axios = nuxtApp.$axios;
- //获取导航一的栏目
- const newsDetail = useState("newsDetail",()=>"");
- const newsDetailList = async () => {
- try {
- const response = await axios.get(`/web/selectWebsiteArticleInfo?articleid=${7}`);
- console.log(response.data);
- newsDetail.value = response.data;
- } catch (error) {
- console.error(error);
- }
- }
- onMounted(()=>{
- newsDetailList()
- })
- </script>
- <style lang="less" scoped>
- //导航条
- .breadcrumb {
- width: 100%;
- height: 22px;
- margin-bottom: 30px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 20px;
- color: #666666;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- .el-breadcrumb::v-deep{
- display: inline-block;
- vertical-align: -4px;
- }
- /deep/.el-breadcrumb__inner a,
- /deep/.el-breadcrumb__inner.is-link {
- color: #666666;
- font-weight: 400;
- text-decoration: none;
- transition: var(--el-transition-color);
- }
- span {
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 20px;
- color: #666666;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- span:hover {
- color: #666666;
- }
- .location {
- margin-right: 20px;
- width: 100px;
- height: 22px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 20px;
- color: #666666;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- // 资讯列表
- .newsDetail {
- width: 100%;
- height: 1400px;
- margin-bottom: 70px;
- .inner {
- width: 1200px;
- height: 1400px;
- .innerLeft {
- height: 1400px;
- border-top: 1px solid #139602;
- .LeftTop {
- height: 522px;
- margin-top: 50px;
- >h1 {
- height: 40px;
- line-height: 40px;
- margin-bottom: 30px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: bold;
- font-size: 30px;
- color: #333333;
- }
- >p {
- height: 18px;
- line-height: 18px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 14px;
- color: #999999;
- span {
- margin-right: 40px;
- }
- }
- >img {
- width: 680px;
- height: 382px;
- padding: 50px 0px 60px 55px;
- }
- }
- .leftBottom {
- width: 790px;
- height: 754px;
- margin-top: 76px;
- >h3,>p{
- text-indent: 2em;
- width: 790px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-size: 20px;
- color: #333333;
- line-height: 23px;
- padding-bottom: 30px;
- }
- >h3 {
- font-weight: 600px;
- }
- >p {
- font-weight: 400;
- }
- }
- }
- .innerRight {
- width: 381px;
- height: 605px;
- background-color: #fbfbfb;
- border-top: 1px solid #139602;
- }
- }
- }
- </style>
|