list.vue
1.7 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<template>
<div class="change_list_container">
<NafmHeader navClass="nafmii-head-bg3" :title="$t('memberservice.change')" />
<main class="change_list_content">
<section class="name list_item">
<van-cell is-link to="/member/changeProgress">
<div slot="title" class="item_info">
<span>{{$t('mprogress.organizationName')}}</span>
</div>
</van-cell>
</section>
<section class="represent list_item">
<van-cell is-link to="/member/changeProgress">
<div class="item_info">
<span>{{$t('mprogress.organizationRepresentive')}}</span>
</div>
</van-cell>
</section>
<section class="type list_item">
<van-cell is-link to="/member/changeProgress">
<div class="item_info">
<span>{{$t('mprogress.membershipType')}}</span>
</div>
</van-cell>
</section>
</main>
</div>
</template>
<script>
export default {
name: "ChangeList",
data() {
return {
}
}
}
</script>
<style lang="less" scoped>
.change_list_container {
padding: 15px;
.list_item {
display: flex;
width: 100%;
margin-bottom: 10px;
&.name {
background-color: #E7EFFF;
}
&.represent {
background-color: #F8F1DF;
}
&.type {
background-color: #F8E8EB;
}
::v-deep .van-cell {
background-color: transparent;
}
::v-deep .van-icon {
height: 66px;
line-height: 66px;
}
.item_info {
line-height: 66px;
display: flex;
align-items: center;
color: #444444;
font-size: 16px;
span {
font-family: PingFangSC-Semibold;
}
}
}
}
</style>