AccessCard.vue
1.0 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
<template>
<view class="access">
<view class="access_head">
<text class="col-3d f-w-500 f-32 m-r-10">近30天</text>数据更新时间06/13
</view>
<view class="access_body">
<view class="access_item">
<text>访问人数</text>
<text class="number f-w-500 f-36 l-h-48 m-top10">0</text>
</view>
<view class="access_item">
<text>订单数 ></text>
<text class="number f-w-500 f-36 l-h-48 m-top10">0</text>
</view>
</view>
</view>
</template>
<script>
</script>
<style lang="scss" scoped>
// 访问量
.access{
width: 100%;
height: 240rpx;
background-color: #fff;
border-radius: 12rpx;
padding: 20rpx;
box-sizing: border-box;
.access_head{
color: #999;
font-size: 20rpx;
}
.access_body{
display: flex;
align-items: center;
justify-content: space-around;
.access_item{
display: flex;
flex-direction: column;
align-items: center;
color: #3d3d3d;
font-size: 24rpx;
line-height: 32rpx;
margin-top: 40rpx;
.number{
font-family: 'HelveticaNeue-Medium';
}
}
}
}
</style>