2025-01-12 12:23:55 +08:00

268 lines
6.3 KiB
Vue

<template>
<view class="article-list-page">
<view class="banner">
<view class="img">
<image :src="topImg" mode="aspectFill" style="width: 100%;height: 100%;"></image>
<view class="topText tn-flex tn-flex-center-between tn-w-full tn-p-lg">
<view class="icon">
<image :src="config.logo" mode="aspectFill" style="width: 100%;height: 100%;"></image>
</view>
<view class="title tn-text-2xl tn-mt-xl tn-pt-sm">
#{{headerTitle}}
</view>
</view>
</view>
</view>
<div class="container tn-shadow tn-p-sm tn-radius">
<view class="search tn-p-sm tn-pb-0 tn-flex tn-flex-center-end">
<view class="search-btn tn-border tn-gray-dark_border tn-p-xs tn-pt-0 tn-pb-0 tn-text tn-gray-dark_text" @click="showSearch">
<TnIcon name="search"/>
<span class="tn-pl-xs"> </span>
</view>
</view>
<view class="item tn-flex tn-flex-center-between tn-p-sm tn-border-bottom tn-grey-light_border"
v-for="(item,index) in articleList"
:key="index"
@click="toDetail(item)">
<view class="left tn-flex tn-flex-column tn-pr-sm tn-flex-1">
<view class="title tn-text-lg tn-text-ellipsis-2">
{{item.title}}
</view>
<view class="info tn-flex tn-flex-row tn-flex-center-between tn-text-xs">
<view class="time">
<TnIcon name="time"/>{{dayjs(item.createTime).format('YYYY-MM-DD')}}
</view>
<view class="author">
<TnIcon name="eye"/>{{item.clickNum + item.addNum}}
</view>
</view>
</view>
<view class="right tn-shadow tn-shadow-blur" style="border-radius: 6rpx;">
<image :src="item.image?item.image:defaultImg" mode="aspectFill" style="width: 150rpx;height: 150rpx;display: block;"></image>
</view>
</view>
<view class="loadmore tn-mt tn-mb">
<TnLoadmore :status="loadmoreStatus" color="#666" loading-icon-mode="flower" />
</view>
</div>
<TnPopup v-model="showPopup" open-direction="top" :radius="0">
<view class="tn-pt-sm tn-pb-sm tn-pl-lg tn-pr-lg">
<TnSearchBox
v-model="searchValue"
shape="round"
@search="searchBtnClickEvent"
@clear="clearEvent"
/>
</view>
</TnPopup>
</view>
</template>
<script lang="ts" setup>
import { onMounted, reactive, ref } from 'vue';
import request from '@/utils/request';
import { onLoad,onReachBottom } from "@dcloudio/uni-app";
import dayjs from "dayjs";
import type { LoadmoreStatus } from '@tuniao/tnui-vue3-uniapp'
import TnLoadmore from '@/uni_modules/tuniaoui-vue3/components/loadmore/src/loadmore.vue'
import TnPopup from '@/uni_modules/tuniaoui-vue3/components/popup/src/popup.vue'
import TnSearchBox from '@/uni_modules/tuniaoui-vue3/components/search-box/src/search-box.vue'
import config from '@/config/config'
const topImg = ref('/static/index_top.jpg')
const headerTitle = ref('');
const defaultImg = ref('http://static.cqtlcm.com/lhdefault.jpg');
const cateId = ref()
const articleList = ref([])
const params = reactive<{
page?:number,
limit?:number,
keyword?:string,
cateId?:number
}>({
page:1,
limit:10,
})
const hasMore = ref(true);
const loadmoreStatus = ref<LoadmoreStatus>('loadmore')
const showPopup = ref(false)
const searchValue = ref('')
const showSearch = () => {
showPopup.value = true
}
const clearEvent = () => {
params.page = 1
articleList.value = []
getList(params)
}
const searchBtnClickEvent = (value: string) => {
params.page = 1;
articleList.value = [];
params.keyword = value;
showPopup.value = false;
getList(params)
}
const getMenuData = () => {
request({
url:'/front/content/category/info',
method:'GET',
data:{
'cateId':cateId.value
}
}).then((res)=>{
uni.setNavigationBarTitle({
title:res.data.data.cateName
})
headerTitle.value = res.data.data.cateName
})
}
const getList = (params:any) => {
loadmoreStatus.value = 'loading'
request({
url:'/front/content/list',
data:params,
method:'GET'
}).then((res)=>{
if(res.data.data.list && res.data.data.list.length > 0){
res.data.data.list.forEach((item:any)=>{
if(item.image){
item.image = JSON.parse(item.image)[0]
}
})
}
if(res.data.data.list.length < params.limit){
loadmoreStatus.value = 'nomore'
hasMore.value = false
}
articleList.value = articleList.value.concat(res.data.data.list)
})
}
const toDetail = (item:any) =>{
if(item.type === 0){
let routeUrl = '/pages/detail/index'
if(item.template){
routeUrl = item.template //定义模板后
}
uni.navigateTo({
url:routeUrl + '?cateId=' + item.cateId + '&id=' + item.id
})
}else if(item.type === 1){
//外链
if(item.link && item.link.slice(0,25) !== 'https://mp.weixin.qq.com/'){
uni.navigateTo({
url:'/pages/webview/index?url=' + item.link
})
}else{
window.location.href = item.link
}
}else{
uni.navigateTo({
url:'/pages/detail/album?id=' + item.id
})
}
}
onReachBottom(() => {
if(hasMore.value){
params.page += 1
getList(params)
}else{
loadmoreStatus.value = 'nomore'
}
})
onLoad((option) => {
cateId.value = option.cateId
params.cateId = option.cateId
})
onMounted(()=>{
getMenuData()
getList(params)
})
</script>
<style lang="scss" scoped>
.article-list-page{
min-height: 100vh;
.banner{
height: 450rpx;
position: relative;
.img{
width: 100%;
height: 100%;
.topText{
color: #fff;
position: absolute;
top: 50rpx;
left: 0;
.icon{
width: 280rpx;
height: 100rpx;
}
.title{
letter-spacing: 4rpx;
}
}
}
::after{
content: "";
position: absolute;
width: 100%;
height: 120rpx;
top: 330rpx;
left: 0;
background:linear-gradient(180deg,rgba(255, 255, 255, 0.01),rgba(255, 255, 255, 0.9))
}
}
.search-btn{
width: 150rpx;
border-radius: 40rpx;
padding-top: 4rpx;
padding-bottom: 5rpx;
}
.container{
position: relative;
top: -160rpx;
background-color: #FFF;
.topic{
border-radius: 0;
}
.item{
background-color: #FFF;
border-radius: 0;
.left{
height: 170rpx;
justify-content: space-between;
.title{
line-height: 1.5em;
color: #444;
}
.info{
color: #666;
}
}
}
}
}
</style>