| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 | 
							- <script setup>
 
- 	import {
 
- 		ref
 
- 	} from "vue";
 
- 	import {
 
- 		onLoad,
 
- 		onPullDownRefresh,
 
- 		onReachBottom,
 
- 		onPageScroll,
 
- 	} from "@dcloudio/uni-app";
 
- 	import {
 
- 		getPolicyList,
 
- 	} from "@/api/work/policy.js";
 
- 	// 页面标题
 
- 	let pageName = ref(null);
 
- 	// 滚动
 
- 	let scrollTop = ref(0);
 
- 	// 搜索条件
 
- 	let searchInfo = ref({
 
- 		pageNo: 1,
 
- 		pageSize: 10,
 
- 		columnId: null
 
- 	});
 
- 	// 列表
 
- 	let policyList = ref([]);
 
- 	let listTotal = ref(0);
 
- 	// 获取列表
 
- 	let loading = ref(true);
 
- 	const getList = function() {
 
- 		if (searchInfo.value.pageNo == 1) {
 
- 			loading.value = true
 
- 		};
 
- 		getPolicyList(searchInfo.value).then(res => {
 
- 			loading.value = false;
 
- 			policyList.value = policyList.value.concat(res.data.list);
 
- 			listTotal.value = res.data.total;
 
- 			if (res.data.total == searchInfo.value.pageNo * searchInfo.value.pageSize - (10 - res.data.list.length))
 
- 				moreListFlag = false;
 
- 		}).catch(() => {
 
- 			loading.value = false;
 
- 		})
 
- 	};
 
- 	//跳转详情
 
- 	const showDetail = function(title, id) {
 
- 		uni.navigateTo({
 
- 			url: `/pages/policy/detail/index?title=${title}&id=${id}`,
 
- 		});
 
- 	}
 
- 	// 触底加载flag
 
- 	let moreListFlag = true
 
- 	onLoad(options => {
 
- 		pageName = options.title;
 
- 		searchInfo.value.columnId = options.id;
 
- 		getList();
 
- 	});
 
- 	//图片预览
 
- 	// function viewImg(e){
 
- 	// 	let imglist = [e]
 
- 	// 	uni.previewImage({
 
- 	// 		longPressActions:true,
 
- 	// 		urls:imglist
 
- 	// 	})
 
- 	// }
 
- 	onPullDownRefresh(() => {
 
- 		searchInfo.value.pageNo = 1;
 
- 		policyList.value = [];
 
- 		moreListFlag = true;
 
- 		try {
 
- 			getList();
 
- 		} finally {
 
- 			uni.stopPullDownRefresh();
 
- 		}
 
- 	});
 
- 	onReachBottom(() => {
 
- 		if (!moreListFlag) {
 
- 			return uni.showToast({
 
- 				title: "已经到底了。",
 
- 				icon: "none",
 
- 				duration: 2000
 
- 			})
 
- 		}
 
- 		searchInfo.value.pageNo++;
 
- 		getList();
 
- 	});
 
- 	onPageScroll((e) => {
 
- 		scrollTop.value = e.scrollTop
 
- 	})
 
- </script>
 
- <template>
 
- 	<view class="container">
 
- 		<page-title>{{pageName}}</page-title>
 
- 		<view class="items-list">
 
- 			<view class="item" v-for="(item,index) in policyList" :key="index" @click="showDetail(item.title,item.id)">
 
- 				<img :src="item.coverImg" alt="" class="item-icon" @click='viewImg(item.coverImg)'>
 
- 				<view class="item-text">
 
- 					<view class="item-title">{{item.title?? "--"}}</view>
 
-           <!-- <view class="item-rptDate">{{item.rptDate?? "--"}}</view> -->
 
- 					<view class="item-kind">{{item.columnName??"--"}}</view>
 
- 				</view>
 
- 				<view class="item-btn">查看</view>
 
- 			</view>
 
- 		</view>
 
- 		<u-back-top :scroll-top="scrollTop"></u-back-top>
 
- 		<u-loading-page :loading="loading"></u-loading-page>
 
- 	</view>
 
- </template>
 
- <style lang="scss" scoped>
 
- 	.items-list {
 
- 		position: absolute;
 
- 		top: 5%;
 
- 		left: 0;
 
- 		width: 100%;
 
- 		min-height: 95%;
 
- 		padding: 100rpx 4%;
 
- 		background: #F9FBFF;
 
- 		// border-radius: 40rpx 40rpx 0 0;
 
- 	}
 
- 	.item {
 
- 		margin-top: 20rpx;
 
- 		display: flex;
 
- 		align-items: center;
 
- 		width: 100%;
 
- 		min-height: 140rpx;
 
- 		padding: 26rpx 28rpx;
 
- 		box-sizing: border-box;
 
- 		background: #FFFFFF;
 
- 		box-shadow: 0rpx 18rpx 48rpx -4rpx rgba(150, 176, 220, 0.2);
 
- 		border-radius: 24rpx;
 
- 		.item-icon {
 
- 			width: 82rpx;
 
- 			height: 82rpx;
 
- 			margin-right: 32rpx;
 
- 			// 	background-image: url("@/static/policy-icon.png");
 
- 			// 	background-size: 100% 100%;
 
- 		}
 
- 		.item-text {
 
- 			width: 70%;
 
- 			height: 100%;
 
- 			word-break: break-all;
 
- 			.item-title {
 
- 				width: 100%;
 
- 				color: #343437;
 
- 				font-size: 28rpx;
 
- 				margin-bottom: 30rpx;
 
- 			}
 
- 			.item-kind {
 
- 				width: fit-content;
 
- 				min-height: 38rpx;
 
- 				padding: 10rpx;
 
- 				box-sizing: border-box;
 
- 				text-align: center;
 
- 				color: #1763E7;
 
- 				font-size: 24rpx;
 
- 				line-height: 38rpx;
 
- 				background: #DEEAFF;
 
- 				border-radius: 12rpx;
 
- 			}
 
-         
 
-       .item-rptDate{
 
-         width: 100%;
 
-         color: #343437;
 
-         font-size: 28rpx;
 
- 				margin-bottom: 30rpx;
 
-       }
 
- 		}
 
- 		.item-btn {
 
- 			width: 106rpx;
 
- 			height: 58rpx;
 
- 			background: #1763E7;
 
- 			border-radius: 16rpx;
 
- 			color: #FFF;
 
- 			font-size: 28rpx;
 
- 			text-align: center;
 
- 			line-height: 58rpx;
 
- 			margin-left: 20rpx;
 
- 		}
 
- 	}
 
- </style>
 
 
  |