| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- <template>
- <view class="container" :style="appThemeStyle">
- <mescroll-body ref="mescrollRef" :sticky="true" @init="mescrollInit" :down="{ use: false }" :up="upOption" @up="upCallback">
- <!-- tab栏 -->
- <u-tabs :list="tabList" :is-scroll="true" v-model="curTab" :active-color="appTheme.mainBg" :duration="0.2" @change="onChangeTab" />
- <!-- 文章列表 -->
- <view class="article-list">
- <view class="article-item" :class="[`show-type__${item.show_type}`]" v-for="(item, index) in articleList.data" :key="index"
- @click="onTargetDetail(item.article_id)">
- <!-- 小图模式 -->
- <block v-if="item.show_type == 10">
- <view class="article-item__left flex-box">
- <view class="article-item__title">
- <text class="twoline-hide">{{ item.title }}</text>
- </view>
- <view class="article-item__footer m-top10">
- <text class="article-views f-24 col-8">{{ item.show_views }}次浏览</text>
- </view>
- </view>
- <view class="article-item__image">
- <image class="image" mode="widthFix" :src="item.image_url"></image>
- </view>
- </block>
- <!-- 大图模式 -->
- <block v-if="item.show_type == 20">
- <view class="article-item__title">
- <text class="twoline-hide">{{ item.title }}</text>
- </view>
- <view class="article-item__image m-top20">
- <image class="image" mode="widthFix" :src="item.image_url"></image>
- </view>
- <view class="article-item__footer m-top10">
- <text class="article-views f-24 col-8">{{ item.show_views }}次浏览</text>
- </view>
- </block>
- </view>
- </view>
- </mescroll-body>
- </view>
- </template>
- <script>
- import MescrollMixin from '@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins'
- import * as ArticleApi from '@/api/article'
- import * as CategoryApi from '@/api/article/category'
- import { getEmptyPaginateObj, getMoreListData } from '@/core/app'
- const pageSize = 15
- export default {
- mixins: [MescrollMixin],
- data() {
- return {
- // 选项卡列表
- tabList: [],
- // 当前选项
- curTab: 0,
- // 当前文章分类ID
- categoryId: 0,
- // 文章列表
- articleList: getEmptyPaginateObj(),
- // 上拉加载配置
- upOption: {
- // 首次自动执行
- auto: true,
- // 每页数据的数量; 默认10
- page: { size: pageSize },
- // 数量要大于3条才显示无更多数据
- noMoreSize: 3,
- }
- }
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad(options) {
- const app = this
- // 记录文章分类ID
- app.categoryId = options.categoryId || 0
- // 获取文章分类数据
- app.getCategoryList()
- },
- methods: {
- /**
- * 上拉加载的回调 (页面初始化时也会执行一次)
- * 其中page.num:当前页 从1开始, page.size:每页数据条数,默认10
- * @param {Object} page
- */
- upCallback(page) {
- const app = this
- // 设置列表数据
- app.getArticleList(page.num)
- .then(list => {
- const curPageLen = list.data.length
- const totalSize = list.data.total
- app.mescroll.endBySize(curPageLen, totalSize)
- })
- .catch(() => app.mescroll.endErr())
- },
- // 获取文章分类数据
- getCategoryList() {
- CategoryApi.list().then(result => {
- this.setTabList(result.data.list)
- })
- },
- // 设置选项卡数据
- setTabList(categoryList) {
- const app = this
- app.tabList = [{ value: 0, name: '全部' }]
- categoryList.forEach(item => {
- app.tabList.push({ value: item.category_id, name: item.name })
- })
- if (app.categoryId > 0) {
- const findIndex = app.tabList.findIndex(item => item.value == app.categoryId)
- app.curTab = findIndex > -1 ? findIndex : 0
- }
- },
- /**
- * 获取文章列表
- * @param {Number} pageNo 页码
- */
- getArticleList(pageNo = 1) {
- const app = this
- return new Promise((resolve, reject) => {
- ArticleApi.list({ categoryId: app.categoryId, page: pageNo }, { load: false })
- .then(result => {
- // 合并新数据
- const newList = result.data.list
- app.articleList.data = getMoreListData(newList, app.articleList, pageNo)
- resolve(newList)
- })
- .catch(reject)
- })
- },
- // 切换标签项
- onChangeTab(index) {
- // 设置当前选中的标签
- this.curTab = index
- this.categoryId = this.tabList[index].value
- // 刷新订单列表
- this.onRefreshList()
- },
- // 刷新列表数据
- onRefreshList() {
- this.articleList = getEmptyPaginateObj()
- setTimeout(() => this.mescroll.resetUpScroll(), 120)
- },
- // 跳转文章详情页
- onTargetDetail(articleId) {
- this.$navTo('pages/article/detail', { articleId })
- },
- },
- /**
- * 分享当前页面
- */
- onShareAppMessage() {
- return {
- title: '文章首页',
- path: "/pages/article/index?" + this.$getShareUrlParams()
- }
- },
- /**
- * 分享到朋友圈
- * 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
- * https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
- */
- onShareTimeline() {
- return {
- title: '文章首页',
- path: "/pages/article/index?" + this.$getShareUrlParams()
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .container {
- min-height: 100vh;
- }
- // 文章列表
- .article-list {
- padding-top: 20rpx;
- line-height: 1;
- background: #f7f7f7;
- }
- .article-item {
- margin-bottom: 20rpx;
- padding: 30rpx;
- background: #fff;
- &:last-child {
- margin-bottom: 0;
- }
- .article-item__title {
- max-height: 74rpx;
- font-size: 28rpx;
- line-height: 38rpx;
- color: #333;
- }
- .article-item__image .image {
- display: block;
- }
- }
- // 小图模式
- .show-type__10 {
- display: flex;
- .article-item__left {
- padding-right: 20rpx;
- }
- .article-item__title {
- // min-height: 72rpx;
- }
- .article-item__image .image {
- width: 240rpx;
- }
- }
- // 大图模式
- .show-type__20 .article-item__image .image {
- width: 100%;
- }
- </style>
|