# 关于页面UI界面
<template>
<view>
<view class="user-set-about-t u-f-ajc u-f-column">
<image src="../../static/xcooo.jpg" mode="widthFix" lazy-load></image>
<view>version 1.0.0</view>
</view>
<block v-for="(item, index) in list">
<homeListItem :item="item" :index="index"></homeListItem>
</block>
</view>
</template>
<script>
import homeListItem from '../../components/home/home-list-item.vue'
export default {
components: {
homeListItem
},
data() {
return {
list: [{
icon: '',
name: '新版本检测',
clicktype: "navigateTo",
url: ""
},
{
icon: '',
name: '星城百科用户协议',
clicktype: "navigateTo",
url: ""
}
]
}
},
methods: {
}
}
</script>
<style lang="less">
.user-set-about-t {
margin-top: 30rpx;
image {
border-radius: 20rpx;
}
view {
margin-top: 20rpx;
font-size: 32rpx;
color: #ccc;
}
}
</style>
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
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