accountDetails.vue
1.8 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<template>
<view class="page">
<view class="box">
<view class="item">
<view class="title">2019年12月
<image src="../../static/more.png" mode="widthFix" class="more" />
</view>
<view class="xitem">
<view class="top">
<text>购物消费</text>
<text>-20.00</text>
</view>
<view class="num">
<text>2019.10.10 9:50</text>
<text>余额 3362.68</text>
</view>
</view>
<view class="xitem">
<view class="top">
<text>账户充值</text>
<text>-20.00</text>
</view>
<view class="num">
<text>2019.10.10 9:50</text>
<text>余额 3362.68</text>
</view>
</view>
<view class="xitem">
<view class="top">
<text>账户转入</text>
<text>-20.00</text>
</view>
<view class="num">
<text>2019.10.10 9:50</text>
<text>余额 3362.68</text>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
page {
background: #F7F7F7;
}
.box {
padding: 0 32rpx;
box-sizing: border-box;
background: #fff;
margin-top: 16rpx;
}
.title {
height: 92rpx;
display: flex;
align-items: center;
border-bottom: 1px solid #EEEEEE;
}
.more {
width: 32rpx;
margin-left: 12rpx;
}
.xitem {
height: 128rpx;
border-bottom: 1px solid #EEEEEE;
overflow: hidden;
}
.top,
.num {
display: flex;
align-items: center;
justify-content: space-between;
}
.top {
margin-top: 20rpx;
font-size: 32rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: rgba(35, 35, 35, 1);
}
.top text:last-child {
color: #FF9417;
}
.num {
margin-top: 10rpx;
font-size: 24rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: rgba(187, 194, 203, 1);
}
</style>