insureProve.vue 1001 Bytes
<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="user-list">
			<view class="list"  v-for="(item,index) in 2" @click="minorsosdetail">
				<view class="title">
					<text>2024-02-22 投保证明</text>
				</view>
				<view class="more-content">
					<view class="more-content-img">点击查看<image src="../../static/right2.png"></image></view>
				</view>
			</view>
		</view>
		</view>
	</view>
</template>

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

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