<template>
|
<view class="box">
|
<!-- 自定义导航栏 -->
|
<view class="navBarBox fix">
|
<!-- 状态栏占位 -->
|
<view class="statusBar" :style="{ paddingTop: statusBarHeight + 'px' }"></view>
|
<!-- 真正的导航栏内容 -->
|
<view class="navBar" >
|
<view class="barText">信息发布</view>
|
</view>
|
</view>
|
<div v-if="loading" style='display: flex;justify-content: center;position: absolute;width:100%;top: 40%;left: 0'>
|
<u-loading-icon></u-loading-icon>
|
</div>
|
<!-- 页面内容 -->
|
<view class="contentList">
|
<view class="examineList">
|
<view class="listHead">
|
<u-checkbox-group >
|
<u-checkbox v-model="isReadOnly" :checked="isReadOnly" @change="chooseRead"></u-checkbox>只显示审核通过
|
</u-checkbox-group>
|
</view>
|
<!-- <view class="listContent" v-if="informationList.length > 0">-->
|
<scroll-view :scroll-top="scrollTop" scroll-y="true" class="listContent" @scrolltoupper="upper" v-if="informationList.length > 0"
|
@scrolltolower="lower" @scroll="scroll" lower-threshold="50">
|
<view v-for="(item, index) in informationList" :key="index" class="itemContent">
|
<view class="content" @click="toDetail(item)">
|
<view class="top">
|
<view class="textContent">
|
<text>[{{item.colorContent}}]</text>
|
<text>{{item.title}}</text>
|
</view>
|
<view class="buttonContent">
|
<u-button v-if="item.buttonContent == '审核通过'" size="mini" class="buttonCo" style="background-color:rgb(17, 204, 33);color: white">
|
{{item.buttonContent}}
|
</u-button>
|
<u-button v-else-if="item.buttonContent == '已驳回'" size="mini" class="buttonCo" style="background-color:rgb(153, 148, 143);color: white">
|
{{item.buttonContent}}
|
</u-button>
|
<u-button v-else type="error" size="mini" class="buttonCo">
|
{{item.buttonContent}}
|
</u-button>
|
</view>
|
</view>
|
<view class="bottom">
|
{{item.content}}
|
</view>
|
</view>
|
</view>
|
</scroll-view>
|
<!-- </view>-->
|
<view v-else>
|
<u-empty margin-top="40%" text="数据为空" mode="data"></u-empty>
|
</view>
|
</view>
|
</view>
|
<tabBar :currentPagePath="page"></tabBar>
|
</view>
|
</template>
|
|
<script>
|
import tabBar from '../tabBarIndex.vue'
|
import { getInfo } from '../../../api/information.js'
|
export default {
|
components:{
|
tabBar
|
},
|
data() {
|
return {
|
data: {
|
pageIndex: 1,
|
pageSize: 12,
|
searchParams: {
|
reviewStatus: null//2:已审核,null:全部
|
}
|
},
|
total: 0,
|
scrollTop: 0,
|
loading: false,
|
checked: false,
|
isReadOnly: false,
|
statusBarHeight: 0,
|
informationList: [],
|
page:'pages/tabBar/information/information'
|
}
|
},
|
onLoad() {
|
//获取手机状态栏高度
|
this.statusBarHeight = uni.getSystemInfoSync()['statusBarHeight'];
|
uni.hideTabBar();
|
},
|
onShow() {
|
this.data.pageIndex = 1
|
this.getInformationList();
|
},
|
methods: {
|
getInformationList() {
|
this.loading = true
|
this.data.searchParams.reviewStatus = this.isReadOnly ? 2 : null;
|
getInfo(this.data).then(res => {
|
if (res.code == 100){
|
let list = res.data?res.data: [];
|
if (res.pageIndex != 1) {
|
this.informationList = this.informationList.concat(list)
|
} else {
|
this.informationList = list;
|
}
|
this.total = res.total
|
if(this.informationList.length > 0) {
|
this.informationList.forEach((item, index) => {
|
this.informationList[index].colorContent = item.warningLevel == 1 ? '红色预警': item.warningLevel == 2 ? '橙色预警': item.warningLevel == 3 ? '黄色预警':'蓝色预警';
|
this.informationList[index].buttonContent = item.reviewStatus == 1 ? '待审核': item.reviewStatus == 2 ? '审核通过' : '已驳回';
|
this.informationList[index].role = 'infoPeople';
|
this.informationList[index].warningLevel = item.warningLevel;
|
})
|
}
|
}else{
|
uni.$u.toast(res.msg)
|
}
|
this.loading = false
|
})
|
},
|
chooseRead(e) {
|
this.isReadOnly = e;
|
this.data.pageIndex = 1
|
this.getInformationList();
|
},
|
toDetail(item) {
|
console.log("item",item)
|
uni.navigateTo({
|
url: `/pages/tabBar/notice/detail?data=` + encodeURIComponent(JSON.stringify(item))
|
})
|
},
|
//下拉刷新
|
onPullDownRefresh() {
|
setTimeout(() => {
|
uni.stopPullDownRefresh();
|
this.getInformationList();
|
}, 1000);
|
},
|
|
|
upper: function(e) {
|
// console.log(e)
|
},
|
lower: function(e) {
|
if (this.data.pageIndex * this.data.pageSize >= this.total){
|
uni.$u.toast('已加载全部数据')
|
return
|
}
|
//并且让页码+1,调用获取数据的方法获取第二页数据
|
this.data.pageIndex++
|
//此处调用自己获取数据列表的方法
|
this.getInformationList()
|
},
|
scroll: function(e) {
|
// console.log(e)
|
},
|
|
clickSwitch(e) {
|
this.getInformationList();
|
}
|
}
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
.box {
|
display: flex;
|
flex-direction: column;
|
width: 100%;
|
height: 100%;
|
}
|
.fix{
|
position: sticky;
|
top: 0;
|
left: 0;
|
right: 0;
|
width: 100%;
|
z-index: 1;
|
}
|
.navBarBox .navBar {
|
background-color:#fff;
|
height: 50px;
|
display: flex;
|
flex-direction: row;
|
justify-content: center;
|
align-items: center;
|
box-shadow: 0 3px 12px rgba(0,0,0,0.05);
|
}
|
.barText{
|
text-align: center;
|
width: 85%;
|
font-size: 16px;
|
/* text-align: center; */
|
font-weight: 600;
|
}
|
.statusBar{
|
background-color:lightgrey;
|
}
|
.contentList{
|
display: flex;
|
flex-direction: column;
|
padding-bottom: 65px;
|
}
|
|
.buttonGroup{
|
margin: 18px 12px;
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
}
|
.buttonItem{
|
margin-left:5px;
|
color: white;
|
display: flex;
|
flex-direction: row;
|
justify-content: center;
|
align-items: center;
|
width: 47px;
|
height: 30px;
|
border-radius: 5px;
|
}
|
.buttonAll{
|
margin-left:5px;
|
color: white;
|
display: flex;
|
flex-direction: row;
|
justify-content: center;
|
align-items: center;
|
width: 35px;
|
height: 30px;
|
border-radius: 5px;
|
font-size: 12px;
|
font-weight: 700;
|
}
|
.all {
|
background-color: rgb(17,204,33);
|
}
|
.active {
|
border: 1.5px solid #8d8d8d;
|
}
|
.red {
|
background-color: red;
|
}
|
.orange {
|
background-color: rgb(251, 158, 13);
|
}
|
.yellow {
|
background-color: rgb(255, 223, 37);
|
}
|
.blue {
|
background-color: rgb(2, 167, 240);
|
}
|
.switchBtn{
|
display: flex;
|
align-items: center;
|
}
|
.listHead{
|
padding: 12px;
|
height: 26px;
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
}
|
.listContent{
|
display: flex;
|
flex-direction: column;
|
width: calc(100% - 24px);
|
margin: 0 12px;
|
background: #fff;
|
border-radius: 5px;
|
box-shadow: 0 3px 12px rgba(0,0,0,0.05);
|
height: calc(100vh - 162px);
|
}
|
|
|
.itemContent{
|
font-size: 16px;
|
color: #333;
|
margin-top: 15px;
|
padding: 0 12px 15px;
|
border-bottom: 1px solid #ebebeb;
|
|
//&:last-of-type{
|
// border-bottom: none;
|
//}
|
}
|
.content{
|
width: 100%;
|
|
.top{
|
width: 100%;
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
.textContent{
|
width: calc(100% - 90px);
|
text-overflow: ellipsis;
|
overflow: hidden;
|
white-space: nowrap;
|
}
|
|
.buttonContent{
|
width: 80px;
|
}
|
}
|
.bottom{
|
width: 100%;
|
font-size: 14px;
|
color: #666;
|
text-overflow: ellipsis;
|
overflow: hidden;
|
white-space: nowrap;
|
}
|
}
|
.buttonCo{
|
font-size: 13px;
|
}
|
|
/* .divider{
|
height: 1px;
|
background-color: gray;
|
margin-left: 10px;
|
margin-right: 10px;
|
|
} */
|
</style>
|