Newer
Older
xinJiangMiniProgranm / packageToolList / components / rumorList.vue
dutingting on 29 Jun 2023 2 KB 细节优化
<template>
	<view class="rumor-list">
		<view class="rumor-item" v-for="(item, index) in list" :key="index" @click="handleClick(item)">
			<view class="left">
				<text class="title">{{item.title}}</text>
				<view style="margin-top: 20rpx;">
					<text class="time">时间:{{item.publishTime}}</text><br/>
					<text class="time">来源:{{item.linkAddr ? item.linkAddr : '未知'}}</text>
				</view>
			</view>
			<!-- <view class="" @click.stop>
				<image 
					:src="item.contentSmallImage || this.imgUrl" 
					style="width: 112px;height: 100px;flex-shrink: 0;" 
					mode=""
					@click="preImage(item.contentSmallImage)" 
					:show-menu-by-longpress="true">
				</image>
			</view> -->
		</view>
	</view>
</template>

<script>
	export default {
		name: 'RumorList',
		props: {
			list: Array,
			default: () => []
		},
		data() {
			return {
				imgUrl: 'http://111.198.10.15:11604/png/rumor.png',
			}
		},
		
		methods: {
			// 点击卡片
			handleClick(val) {
				const url = `https://www.xjwljb.com/piyao/web/bulletin/newInfo?id=${val.id}&catalogId=${val.catalogId}`
				wx.navigateTo({
					url: '/packageToolList/rumorWebView/rumorWebView?url=' + encodeURIComponent(url)
				})
			},
			// 图片预览
			preImage(src) {
				wx.previewImage({
					current: src, // 当前显示图片的http链接
					urls: [src] // 需要预览的图片http链接列表
				})
			}
		}
	}
</script>

<style lang="scss" scoped>
	@import '../../common/variables.scss';
	.rumor-list {
		width: 100%;
		box-sizing: border-box;
		.rumor-item {
			display: flex;
			justify-content: space-between;
			align-items: center;
			width: 100%;
			height: 280rpx;
			padding: 20rpx 32rpx;
			background-color: #fff;
			box-sizing: border-box;
			margin-top: 32rpx;
			border-radius: 16rpx;
			box-shadow: 2rpx 2rpx 8rpx rgba(0, 0, 0, 0.2);
			&:first-child {
				margin-top: -24rpx;
			}
			.left {
				height: 100%;
				display: flex;
				flex-direction: column;
				justify-content: space-between;
				margin-right: 20rpx;
				.title {
					font-size: 32rpx;
					color: #000;
					font-weight: 600;
					@include exceeding-line-overflow(3);
				}
				.time {
					font-size: 28rpx;
					color: #c1c1c1;
				}
			}
			.right {
				width: 100rpx;
				height: 100rpx;
			}
		}
	}
</style>