2024-11-26 22:36:36 +08:00

235 lines
5.3 KiB
Vue

<template>
<!-- 视频列表-->
<view class="video_list">
<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-xl tn-mt-xl">
#{{headerTitle}}
</view>
</view>
</view>
</view>
<view class="container tn-shadow tn-radius tn-pl-sm tn-pr-sm">
<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-mb tn-mt tn-shadow tn-gray-dark_shadow" v-for="(item,index) in articleList" :key="index" @click="toDetail(item)">
<view class="cover">
<image :src="JSON.parse(item.image)[0]" style="width: 100%;height: 100%;"></image>
</view>
<view class="wrap">
<view class="mask">
</view>
</view>
<view class="title tn-text-center tn-text-lg tn-pb-xs tn-pt-xs">
{{item.title}}
</view>
</view>
<view class="loadmore tn-mt tn-pb">
<TnLoadmore :status="loadmoreStatus" color="#666" loading-icon-mode="flower" />
</view>
</view>
<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 type { LoadmoreStatus } from '@tuniao/tnui-vue3-uniapp'
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 TnLoadmore from '@/uni_modules/tuniaoui-vue3/components/loadmore/src/loadmore.vue'
import config from '@/config/config.js'
const loadmoreStatus = ref<LoadmoreStatus>('loadmore')
const topImg = ref('/static/index_top.jpg')
const hasMore = ref(true)
const showPopup = ref(false)
const headerTitle = ref('')
const articleList = ref([])
const searchValue = ref()
const params = reactive<{
page?:number,
limit?:number,
cateId?:number,
keyword?:string
}>({
page:1,
limit:10
})
const showSearch = () => {
showPopup.value = true
}
const clearEvent = () => {
params.page = 1
params.keyword = undefined
articleList.value = []
getList(params)
}
const searchBtnClickEvent = (value:string) => {
params.page = 1;
params.keyword = value
articleList.value = [];
showPopup.value = false;
getList(params)
}
const getMenuConfig = () => {
request({
url: '/front/content/category/info',
method:'GET',
data:{'cateId':params.cateId}
}).then((res:any)=>{
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',
method:'GET',
data:params
}).then((res:any)=>{
articleList.value = articleList.value.concat(res.data.data.list)
loadmoreStatus.value = 'loadmore'
if(res.data.data.list.length < 10){
loadmoreStatus.value = 'nomore'
hasMore.value = false
}
})
}
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
})
}
}
onLoad((options) =>{
params.cateId = options.cateId
})
onReachBottom(() =>{
if(hasMore.value){
params.page += 1
getList(params)
}
})
onMounted(() => {
getMenuConfig()
getList(params)
})
</script>
<style lang="scss" scoped>
.video_list{
background-color: #fff;
height: 100vh;
.banner{
height: 450rpx;
position: relative;
.img{
width: 100%;
height: 100%;
.topText{
color: #fff;
position: absolute;
top: 100rpx;
left: 0;
.icon{
width: 220rpx;
height: 80rpx;
}
.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;
.item{
.cover{
width: 100%;
height: 380rpx;
border-radius: 6rpx;
}
}
}
}
</style>