list.vue
1.2 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
<template>
<div class="change_list">
<NafmHeader title="变更" />
<section class="name list_item">
<div class="item_icon"></div>
<div class="item_info">
<span>单位名称变更</span>
<van-icon name="arrow" />
</div>
</section>
<section class="represent list_item">
<div class="item_icon"></div>
<div class="item_info">
<span>单位代表变更</span>
<van-icon name="arrow" />
</div>
</section>
<section class="type list_item">
<div class="item_icon"></div>
<div class="item_info">
<span>会籍类别变更</span>
<van-icon name="arrow" />
</div>
</section>
</div>
</template>
<script>
export default {
data() {
return {
}
}
}
</script>
<style lang="less" scoped>
.change_list {
padding: 20px;
.list_item {
display: flex;
width: 100%;
height: 100px;
border: 1px solid red;
margin-bottom: 10px;
.item_icon {
display: inline-block;
width: 66px;
height: 66px;
margin: 17px 30px;
border: 1px solid cyan;
}
.item_info {
display: inline-block;
line-height: 66px;
margin: 17px 0;
}
}
}
</style>