insureProve.vue
1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<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>