158 lines
3.4 KiB
Vue
158 lines
3.4 KiB
Vue
<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"
|
|
@goDetail="goDetail()"></my-notice-item-tg>
|
|
<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>
|
|
import {
|
|
toast,
|
|
hasRights
|
|
} from '@/utils/common.js'
|
|
import myNoticeItemTg from '@/pages/components/my-notice-item-tg.vue'
|
|
export default {
|
|
components: {
|
|
myNoticeItemTg
|
|
},
|
|
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
|
|
//这里重置查询条件
|
|
this.onRefresherrefresh()
|
|
},
|
|
/**
|
|
* 上滑加载数据
|
|
*/
|
|
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
|
|
},
|
|
/**
|
|
/**
|
|
* 查看详情
|
|
* @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;
|
|
}
|
|
}
|
|
}
|
|
</style> |