accountFlow.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
<template>
<view class="">
<image class="bg" src="/static/takeMoneyBg.png" mode=""></image>
<view class="top">
<view >账户余额:</view>
<view > <text style="32rpx">¥</text> 600.00</view>
</view>
<scroll-view scroll-y="true" class="center">
<view class="item flexA" v-for="item in 50">
<view class="left">
<view class="">缴纳平台保证金</view>
<view class="">2022.06.12 17:00</view>
</view>
<view class="right">
<view class="">+¥100</view>
</view>
</view>
</scroll-view >
</view>
</template>
<script>
export default{
data() {
return {
list:50
}
},
}
</script>
<style lang="less">
page {
background: #f6f6f6;
}
.bg {
overflow: hidden;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 366rpx;
}
.top {
position: absolute;
left: 32rpx;
top: 64rpx;
view:nth-child(1) {
color: rgba(0,0,0,0.4);
font-size: 28rpx;
}
view:nth-child(2) {
color: rgba(0,0,0,0.9);
font-size: 64rpx;
font-weight: 700;
}
}
.center {
position: absolute;
width: 100%;
left: 50%;
top: 220rpx;
height: calc(100vh - 220rpx);
border-radius: 24rpx;
padding: 40rpx 30rpx;
transform: translateX(-50%);
background: #fff;
box-sizing: border-box;
.item {
justify-content: space-between;
height: 144rpx;
border-bottom: 1px solid rgba(238,239,240,1);;
.left {
view:nth-child(1){
color: rgba(50,50,51,1);
font-size: 28rpx;
margin-bottom: 8rpx;
}
view:nth-child(2){
color: rgba(200,201,204,1);
font-size: 24rpx;
}
}
.right {
color: rgba(230,61,39,1);
font-size: 28rpx;
font-weight: 500;
}
}
}
</style>