dl_uniapp/pages/components/my-notice-tg.vue

224 lines
4.8 KiB
Vue
Raw Normal View History

2025-04-10 14:41:14 +08:00
<template>
<view class="my-notice-box">
<!-- 标题 -->
<view class="dl-title">
我的通告
</view>
<!-- 菜单 -->
<view class="dl-menu-box">
<view v-for="(item,index) in menus" @click="itemClick(index,item)" class="dl-menu"
:class="index==menuIndex?'dl-menu click':'dl-menu'">{{item}}</view>
</view>
<!-- 通告列表 -->
<view class="dl-body">
<view class="dl-item-box">
<scroll-view style="height: 100%;" scroll-y="true" @scrolltolower="onReachBottomCus" refresher-enabled
@refresherrefresh="onRefresherrefresh" :refresher-triggered="isTriggered">
<my-notice-item-tg v-if="dataList.length>0" :dataList="dataList"
2025-04-15 17:40:58 +08:00
@goDetail="goDetail"></my-notice-item-tg>
2025-04-10 14:41:14 +08:00
<view style="text-align: center" v-if="dataList.length==0">
<image class="" src="@/static/images/nothing.png"></image>
</view>
</scroll-view>
</view>
</view>
</view>
</template>
<script>
2025-04-15 10:22:11 +08:00
import {
myPublishNoticeList
} from '@/api/business/notice.js'
2025-04-10 14:41:14 +08:00
import {
toast,
hasRights
} from '@/utils/common.js'
import myNoticeItemTg from '@/pages/components/my-notice-item-tg.vue'
2025-04-15 10:22:11 +08:00
import {
getCatgByCode
} from '@/api/system/config.js'
2025-04-10 14:41:14 +08:00
export default {
components: {
myNoticeItemTg
},
data() {
return {
menus: ['进行中', '已关闭'],
menuIndex: 0,
2025-04-15 10:22:11 +08:00
dataList: [],
2025-04-10 14:41:14 +08:00
queryParams: {
2025-04-15 10:22:11 +08:00
status: '进行中',
2025-04-10 14:41:14 +08:00
pageNum: 1,
pageSize: 10,
},
total: 0,
//下来刷新状态
isTriggered: false
}
},
2025-04-15 10:22:11 +08:00
mounted() {
this.initData("dl_platform", "platformList")
this.initData("dl_blogger_type", "bloggerTypeList")
this.selectDataList()
let that = this
uni.$on('updateList', function(data) {
that.selectDataList()
})
},
2025-04-10 14:41:14 +08:00
methods: {
2025-04-15 10:22:11 +08:00
/**
* 查询数据
*/
selectDataList() {
myPublishNoticeList(this.queryParams).then(res => {
this.isTriggered = false
if (res.code == 200) {
if (this.queryParams.pageNum == 1) {
this.dataList = res.data.records
} else {
this.dataList = this.dataList.concat(res.data.records)
}
this.total = res.data.total
}
}).catch((e) => {
this.isTriggered = false
uni.showToast({
icon: 'error',
duration: 2000,
title: e
});
})
},
/**
* 初始化数据
* @param {Object} code
* @param {Object} dataObj
*/
initData(code, dataObj) {
let that = this
getCatgByCode({
code: code
}).then(res => {
if (res.code == 200) {
this[dataObj] = res.data
}
}).catch((e) => {
uni.showToast({
icon: 'error',
duration: 2000,
title: e
});
})
},
2025-04-10 14:41:14 +08:00
/**
* 菜单点击
* @param {Object} index
* @param {Object} item
*/
itemClick(index, item) {
this.menuIndex = index
//这里重置查询条件
2025-04-15 10:22:11 +08:00
this.queryParams.status = item
this.queryParams.pageNum = 1
this.total = 0
this.selectDataList()
2025-04-10 14:41:14 +08:00
},
/**
* 上滑加载数据
*/
onReachBottomCus() {
//判断 如果页码*页容量大于等于总条数,提示该页数据加载完毕
if (this.queryParams.pageNum * this.queryParams.pageSize >= this.total) {
toast("没有更多数据了")
return
}
//页码+1,调用获取数据的方法获取第二页数据
this.queryParams.pageNum++
2025-04-15 10:22:11 +08:00
this.selectDataList()
2025-04-10 14:41:14 +08:00
},
/**
* 下拉刷新数据
*/
onRefresherrefresh() {
this.isTriggered = true
this.queryParams.pageNum = 1
this.total = 0
2025-04-15 10:22:11 +08:00
this.selectDataList()
2025-04-10 14:41:14 +08:00
},
/**
/**
* 查看详情
* @param {Object} id
*/
goDetail(id) {
this.$tab.navigateTo('/pages/notice/detail?viewMy=true&id=' + id)
}
}
}
</script>
<style lang="scss">
.my-notice-box {
padding-top: var(--status-bar-height);
width: 100%;
color: #363636;
background-color: white;
font-size: 38rpx;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: start;
position: relative;
.dl-title {
font-size: 32rpx;
width: 100%;
position: relative;
text-align: center;
font-weight: bold;
z-index: 10;
padding: 62rpx 0 15rpx 15rpx;
border-bottom: 1px solid #F4F4F4;
}
.dl-menu-box {
border-bottom: 1rpx solid #EEEEEE;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
padding-top: 20rpx;
.dl-menu {
flex-grow: 1;
font-size: 30rpx;
margin: 0 20rpx;
padding-bottom: 12rpx;
text-align: center;
}
.click {
color: #FF434E;
font-weight: bold;
border-bottom: 3px solid #FF434E;
}
}
.dl-body {
flex: 1;
width: 100%;
height: 100%;
background-color: #EEEEEE;
padding: 0 20rpx 0 20rpx;
.dl-item-box {
height: calc(100vh - var(--status-bar-height) - var(--window-bottom) - 337rpx);
padding-top: 20rpx;
isplay: flex;
flex-direction: column;
}
}
}
2025-04-15 17:40:58 +08:00
</style>