dl_uniapp/pages/components/my-notice.vue

146 lines
3.2 KiB
Vue
Raw Normal View History

2025-04-03 11:14:12 +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 v-if="dataList.length>0" :dataList="dataList"></my-notice-item>
2025-04-09 17:09:38 +08:00
<view style="text-align: center" v-if="dataList.length==0">
2025-04-03 11:14:12 +08:00
<image class="" src="@/static/images/nothing.png"></image>
2025-04-09 17:09:38 +08:00
</view>
2025-04-03 11:14:12 +08:00
</scroll-view>
</view>
</view>
</view>
</template>
<script>
import {
toast,
hasRights
} from '@/utils/common.js'
import myNoticeItem from '@/pages/components/my-notice-item.vue'
export default {
components: {
myNoticeItem
},
data() {
return {
menus: ['全部', '已报名', '待审核', '待发布', '已完成', '未合作'],
menuIndex: 0,
dataList: ['', ''],
queryParams: {
pageNum: 1,
pageSize: 10,
},
total: 0,
//下来刷新状态
isTriggered: false
}
},
methods: {
/**
* 菜单点击
* @param {Object} index
* @param {Object} item
*/
itemClick(index, item) {
this.menuIndex = index
},
/**
* 上滑加载数据
*/
onReachBottomCus() {
//判断 如果页码*页容量大于等于总条数,提示该页数据加载完毕
if (this.queryParams.pageNum * this.queryParams.pageSize >= this.total) {
toast("没有更多数据了")
return
}
//页码+1,调用获取数据的方法获取第二页数据
this.queryParams.pageNum++
},
/**
* 下拉刷新数据
*/
onRefresherrefresh() {
this.isTriggered = true
this.queryParams.pageNum = 1
this.total = 0
},
}
}
</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 {
2025-04-03 16:46:51 +08:00
border-bottom: 1rpx solid #EEEEEE;
2025-04-03 11:14:12 +08:00
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);
isplay: flex;
flex-direction: column;
}
}
}
</style>