313 lines
7.5 KiB
Vue
313 lines
7.5 KiB
Vue
<template>
|
||
<view>
|
||
<view class='newsList'>
|
||
<view class='swiper' v-if="imgUrls.length > 0">
|
||
<swiper indicator-dots="true" :autoplay="autoplay" :circular="circular" :interval="interval" :duration="duration"
|
||
indicator-color="rgba(102,102,102,0.3)" indicator-active-color="#666">
|
||
<block v-for="(item,index) in imgUrls" :key="index">
|
||
<swiper-item>
|
||
<navigator :url="'/pages/news_details/index?id='+item.id">
|
||
<image :src="item.image_input[0]" class="slide-image" />
|
||
</navigator>
|
||
</swiper-item>
|
||
</block>
|
||
</swiper>
|
||
</view>
|
||
<view class='nav' v-if="navList.length > 0">
|
||
<scroll-view class="scroll-view_x" scroll-x scroll-with-animation :scroll-left="scrollLeft" style="width:auto;overflow:hidden;">
|
||
<block v-for="(item,index) in navList" :key="index">
|
||
<view class='item' :class='active==item.article_category_id?"on":""' @click='tabSelect(item.article_category_id)'>
|
||
<view>{{item.title}}</view>
|
||
<view class='line bg-color' v-if="active==item.article_category_id"></view>
|
||
</view>
|
||
</block>
|
||
</scroll-view>
|
||
</view>
|
||
<view class='list'>
|
||
<block v-for="(item,index) in articleList" :key="index">
|
||
<navigator :url='"/pages/news_details/index?id="+item.article_id' hover-class='none' class='item acea-row row-between-wrapper'>
|
||
<view class='text acea-row row-column-between'>
|
||
<view class='name line2'>{{item.title}}</view>
|
||
<view>{{item.create_time}}</view>
|
||
</view>
|
||
<view class='pictrue'>
|
||
<image :src='item.image_input'></image>
|
||
</view>
|
||
</navigator>
|
||
</block>
|
||
</view>
|
||
</view>
|
||
<view class='empty-box acea-row row-middle' v-if="articleList.length == 0 && (page != 1 || active== 0)">
|
||
<view class='pictrue'>
|
||
<image src='../../static/images/empty-box.png'></image>
|
||
<view class="txt">暂无新闻信息~</view>
|
||
</view>
|
||
</view>
|
||
<home></home>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
import {
|
||
getArticleCategoryList,
|
||
getArticleList,
|
||
getArticleHotList,
|
||
getArticleBannerList
|
||
} from '@/api/api.js';
|
||
import home from '@/components/home';
|
||
export default {
|
||
components: {
|
||
home
|
||
},
|
||
data() {
|
||
return {
|
||
imgUrls: [],
|
||
articleList: [],
|
||
indicatorDots: false,
|
||
circular: true,
|
||
autoplay: true,
|
||
interval: 3000,
|
||
duration: 500,
|
||
navList: [],
|
||
active: 0,
|
||
page: 1,
|
||
limit: 8,
|
||
status: false,
|
||
scrollLeft: 0
|
||
};
|
||
},
|
||
/**
|
||
* 生命周期函数--监听页面显示
|
||
*/
|
||
onShow: function() {},
|
||
/**
|
||
* 生命周期函数--监听页面显示
|
||
*/
|
||
onLoad: function() {
|
||
this.getArticleCate();
|
||
this.status = false;
|
||
this.page = 1;
|
||
this.articleList = [];
|
||
},
|
||
/**
|
||
* 页面上拉触底事件的处理函数
|
||
*/
|
||
onReachBottom: function() {
|
||
this.getCidArticle();
|
||
},
|
||
methods: {
|
||
getArticleHot: function() {
|
||
let that = this;
|
||
getArticleHotList().then(res => {
|
||
that.$set(that, 'articleList', res.data);
|
||
});
|
||
},
|
||
getArticleBanner: function() {
|
||
let that = this;
|
||
getArticleBannerList().then(res => {
|
||
that.imgUrls = res.data;
|
||
});
|
||
},
|
||
getCidArticle: function() {
|
||
let that = this;
|
||
if (that.active == 0) return;
|
||
let limit = that.limit;
|
||
let page = that.page;
|
||
let articleList = that.articleList;
|
||
if (that.status) return;
|
||
getArticleList(that.active, {
|
||
page: page,
|
||
limit: limit
|
||
}).then(res => {
|
||
let articleListNew = [];
|
||
let len = res.length;
|
||
articleListNew = articleList.concat(res.data.list);
|
||
that.page++;
|
||
that.$set(that, 'articleList', articleListNew);
|
||
that.status = limit > len;
|
||
that.page = that.page;
|
||
});
|
||
},
|
||
getArticleCate: function() {
|
||
let that = this;
|
||
getArticleCategoryList().then(res => {
|
||
this.active = res.data[0].article_category_id
|
||
that.$set(that, 'navList', res.data);
|
||
this.getCidArticle();
|
||
});
|
||
},
|
||
tabSelect(active) {
|
||
this.active = active;
|
||
if (this.active == 0) this.getArticleHot();
|
||
else {
|
||
this.$set(this, 'articleList', []);
|
||
this.page = 1;
|
||
this.status = false;
|
||
this.getCidArticle();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
<style>
|
||
page {
|
||
background: #ffffff;
|
||
}
|
||
</style>
|
||
<style lang="scss" scoped>
|
||
.newsList .swiper {
|
||
width: 100%;
|
||
position: relative;
|
||
box-sizing: border-box;
|
||
padding: 0 30rpx;
|
||
}
|
||
.newsList .swiper swiper {
|
||
width: 100%;
|
||
height: 365rpx;
|
||
position: relative;
|
||
}
|
||
.newsList .swiper .slide-image {
|
||
width: 100%;
|
||
height: 335rpx;
|
||
border-radius: 6rpx;
|
||
}
|
||
// #ifdef MP-WEIXIN
|
||
.newsList .swiper .wx-swiper-dot {
|
||
width: 12rpx !important;
|
||
height: 12rpx !important;
|
||
border-radius: 0;
|
||
transform: rotate(-45deg);
|
||
transform-origin: 0 100%;
|
||
}
|
||
.newsList .swiper .wx-swiper-dot~.wx-swiper-dot {
|
||
margin-left: 5rpx;
|
||
}
|
||
.newsList .swiper .wx-swiper-dots.wx-swiper-dots-horizontal {
|
||
margin-bottom: -15rpx;
|
||
}
|
||
|
||
// #endif
|
||
// #ifdef APP-PLUS || H5
|
||
.newsList .swiper .uni-swiper-dot {
|
||
width: 12rpx !important;
|
||
height: 12rpx !important;
|
||
border-radius: 0;
|
||
transform: rotate(-45deg);
|
||
transform-origin: 0 100%;
|
||
}
|
||
.newsList .swiper .uni-swiper-dot~.uni-swiper-dot {
|
||
margin-left: 5rpx;
|
||
}
|
||
.newsList .swiper .uni-swiper-dots.uni-swiper-dots-horizontal {
|
||
margin-bottom: -15rpx;
|
||
}
|
||
// #endif
|
||
.newsList .nav {
|
||
padding: 0 30rpx;
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
box-sizing: border-box;
|
||
margin-top: 43rpx;
|
||
}
|
||
.newsList .nav .item {
|
||
display: inline-block;
|
||
font-size: 32rpx;
|
||
color: #999;
|
||
min-width: 130rpx;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
position: relative;
|
||
padding-bottom: 20rpx;
|
||
text-align: center;
|
||
}
|
||
.newsList .nav .item.on {
|
||
color: #282828;
|
||
}
|
||
.newsList .nav .item~.item {
|
||
margin-left: 46rpx;
|
||
}
|
||
.newsList .nav .item .line {
|
||
width: 24rpx;
|
||
height: 4rpx;
|
||
border-radius: 2rpx;
|
||
margin: 10rpx auto 0 auto;
|
||
position: absolute;
|
||
bottom: 5rpx;
|
||
left: 50%;
|
||
margin-left: -12rpx;
|
||
}
|
||
.newsList .list .item {
|
||
margin: 0 30rpx;
|
||
border-bottom: 1px solid #f0f0f0;
|
||
padding: 35rpx 0;
|
||
}
|
||
.newsList .list .item .pictrue {
|
||
width: 250rpx;
|
||
height: 156rpx;
|
||
}
|
||
.newsList .list .item .pictrue image {
|
||
width: 100%;
|
||
height: 100%;
|
||
border-radius: 6rpx;
|
||
}
|
||
.newsList .list .item .text {
|
||
width: 420rpx;
|
||
height: 156rpx;
|
||
font-size: 24rpx;
|
||
color: #999;
|
||
}
|
||
.newsList .list .item .text .name {
|
||
font-size: 30rpx;
|
||
color: #282828;
|
||
}
|
||
.newsList .list .item .picList .pictrue {
|
||
width: 335rpx;
|
||
height: 210rpx;
|
||
margin-top: 30rpx;
|
||
}
|
||
.newsList .list .item .picList.on .pictrue {
|
||
width: 217rpx;
|
||
height: 136rpx;
|
||
}
|
||
.newsList .list .item .picList .pictrue image {
|
||
width: 100%;
|
||
height: 100%;
|
||
border-radius: 6rpx;
|
||
}
|
||
.newsList .list .item .time {
|
||
text-align: right;
|
||
font-size: 24rpx;
|
||
color: #999;
|
||
margin-top: 22rpx;
|
||
}
|
||
.noCommodity{
|
||
border: none;
|
||
}
|
||
.empty-box{
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
align-items: center;
|
||
margin-top: 200rpx;
|
||
image{
|
||
width: 414rpx;
|
||
height: 240rpx;
|
||
}
|
||
.txt{
|
||
font-size: 26rpx;
|
||
color: #999;
|
||
text-align: center;
|
||
}
|
||
}
|
||
</style>
|