cashOut.vue
3.1 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<template>
<view class="page">
<view class="box" style="margin-top: 0;">
<view class="cardBox">
<image src="../../static/logo.png" mode="widthFix" class="logo"/>
<view class="cardInfo">
<view class="cardTips">提现账户</view>
<view class="cardName">农业银行(6549)</view>
</view>
</view>
</view>
<view class="box">
<view class="title">转账金额</view>
<view class="fillArea">
<text>¥</text>
<input type="text" class="fillmoney">
</view>
<view class="tipsmoney">当前账户余额9938.57元</view>
</view>
<view class="box">
<view class="title">转账说明:</view>
<textarea name="" id="" cols="30" rows="10" class="wordArea"></textarea>
</view>
<view class="submit">申请提现</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
.page{
background: #FEFEFE;
padding: 32rpx 32rpx 0;
box-sizing: border-box;
}
.title{
font-size:32rpx;
font-family:PingFangHK-Regular,PingFangHK;
font-weight:600;
color:rgba(8,18,31,1);
}
.box{
margin-top: 60rpx;
}
.userbox{
width:686rpx;
height:120rpx;
background:rgba(255,255,255,1);
box-shadow:0px 8rpx 24rpx 0px rgba(0,0,0,0.06);
border-radius:8rpx;
display: flex;
align-items: center;
font-size:32rpx;
font-family:PingFangHK-Regular,PingFangHK;
font-weight:400;
color:rgba(8,18,31,1);
margin-top: 32rpx;
padding: 0 24rpx;
box-sizing: border-box;
}
.avator{
width: 72rpx;
margin-right: 16rpx;
}
.fillArea{
height: 132rpx;
display: flex;
align-items: center;
border-bottom: 1px solid #EAEAEA;
}
.fillArea text{
font-size:72rpx;
font-family:PingFangHK-Regular,PingFangHK;
font-weight:400;
color:rgba(8,18,31,1);
margin-right: 16rpx;
}
.fillmoney{
width: 400rpx;
display: flex;
align-items: center;
font-size:32rpx;
font-family:PingFangHK-Regular,PingFangHK;
font-weight:400;
color:rgba(8,18,31,1);
}
.tipsmoney{
font-size:24rpx;
font-family:PingFangHK-Regular,PingFangHK;
font-weight:400;
color:rgba(189,196,206,1);
margin-top: 14rpx;
}
.wordArea{
width: 100%;
margin-top: 16rpx;
height: 160rpx;
font-size:28rpx;
font-family:PingFangHK-Regular,PingFangHK;
font-weight:400;
color:rgba(61,69,76,1);
}
.submit{
width: 686rpx;
height: 84rpx;
background: rgba(194, 148, 69, 1);
border-radius: 8rpx;
font-size: 32rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: rgba(255, 255, 255, 1);
display: flex;
justify-content: center;
align-items: center;
margin: 100rpx auto;
}
.cardBox{
display: flex;
align-items: center;
border-bottom: 1px solid #EAEAEA;
padding-bottom: 32rpx;
}
.logo{
width: 72rpx;
margin-right: 16rpx;
}
.cardInfo{
width: 596rpx;
}
.cardTips{
font-size:32rpx;
font-family:PingFangHK-Regular,PingFangHK;
font-weight:400;
color:rgba(8,18,31,1);
}
.cardName{
font-size:28rpx;
font-family:PingFangHK-Regular,PingFangHK;
font-weight:400;
color:rgba(8,18,31,1);
margin-top: 16rpx;
}
</style>