4b045f7c
刘淇
江阴初始化项目
|
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
76
77
78
79
80
81
82
83
84
85
86
87
88
|
<template>
<view class="uni-wrap">
<scroll-view class="scroll" scroll-y>
<view class="example-info">
<text class="example-info-text"> uni-section 组件主要用于文章、列表详情的等标题展示 </text>
</view>
<uni-section class="uni-section" title="基础用法" sub-title="副标题"></uni-section>
<view class="example-body">
<uni-list>
<uni-list-item title="item" />
<uni-list-item title="item" />
</uni-list>
</view>
<uni-section title="竖线装饰" sub-title="副标题" type="line"></uni-section>
<view class="example-body">
<uni-list>
<uni-list-item title="item" />
<uni-list-item title="item" />
</uni-list>
</view>
<uni-section title="圆形装饰" sub-title="副标题" type="circle"></uni-section>
<view class="example-body">
<uni-list>
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
<uni-list-item title="item" />
</uni-list>
</view>
</scroll-view>
</view>
</template>
<script>
export default {
components: {},
data() {
return {
appear: false,
}
},
onReady() {
},
methods: {
}
}
</script>
<style lang="scss">
.uni-wrap {
flex-direction: column;
/* #ifdef H5 */
height: calc(100vh - 44px);
/* #endif */
/* #ifndef H5 */
height: 100vh;
/* #endif */
flex: 1;
}
.scroll {
flex-direction: column;
flex: 1;
}
.example-body {
padding: 0;
/* #ifndef APP-NVUE */
display: block;
/* #endif */
}
</style>
|