InformationDisclosure.vue 1.12 KB
<template>
	<view class="page">
		<view class="head">
			<view class="logo-title">
				<image @click="goBack" src="../../static/left.png"></image>
				信息公示
			</view>
			<view class="title">
			</view>
			<view class="setting-mess"></view>
		</view>
		
		<view class="main">
			<view class="article-list">
				<view class="list" v-for="(item,index) in 2" @click="InformationDisclosureDetail">
					<view class="item">
						<view class="title">
							<text>2024年10-11月项目申请人公示</text>
						</view>
						<view class="like">
							<text>2024-12-02 14:54</text>
						</view>
					</view>
					<view class="thumb">
						<image src="../../static/img/1.png" mode=""></image>
					</view>
				</view>
			</view>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
			}
		},
		methods: {
			goBack() {
				uni.navigateBack({
					delta: 1
				});
			},
			InformationDisclosureDetail() {
				uni.navigateTo({
					url: '/pages/InformationDisclosureDetail/InformationDisclosureDetail'
				})
			},
		}
	};
</script>

<style scoped lang="scss">
	@import 'InformationDisclosure.scss';
</style>