transferAccounts.vue
7.6 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
<template>
<view class="page" style="overflow-y: scroll;">
<view class="box" style="margin-top: 0;">
<view class="title">到账用户手机</view>
<view class="searchbox">
<input type="number" placeholder="请输入到账用户手机号" class="fillTel" @input="enterphone" />
<view class="searchbtn" @click='search'>
<image src="../../static/tel.png" mode="widthFix" class="icon" />查找
</view>
</view>
</view>
<view class="box" v-if="userinfo!=''">
<view class="title">到账用户信息</view>
<view class="userbox">
<image :src="userinfo.avatar" mode="widthFix" class="avator" />
<text>{{userinfo.nickname}}</text>
</view>
</view>
<view class="box" v-else>
<view class="title">到账用户信息</view>
<view class="userbox">
<image src="../../static/zhuanzhang.png" mode="widthFix" class="avator" />
<text>未找到该用户</text>
</view>
</view>
<view class="box">
<view class="title">转账金额</view>
<view class="fillArea">
<text>¥</text>
<input class="fillmoney" @input="emtermoney" type="digit">
</view>
<view class="tipsmoney">当前账户余额{{userinfok.money}}元</view>
</view>
<view class="loginboxitem flextwo">
<view class="flex">
<view class="boxitemleftkk">
验证码
</view>
<view class="boxitemright yanzhengk">
<input type="text" value="" placeholder="请输入验证码" placeholder-class="enter" @input="enteryan" />
</view>
</view>
<picyan @picname="getpic"></picyan>
</view>
<view class="boxkk">
<view class="title">转账说明:</view>
<textarea name="" id="" cols="30" rows="10" class="wordArea" placeholder="转账说明"></textarea>
</view>
<view class="submit" @click="zhuanzhang">转账</view>
</view>
</template>
<script>
import app from "../../App.vue";
import picyan from "../../components/picyan/picyan.vue";
export default {
data() {
return {
phone: '',
userinfo:'',
money:'',
userinfok:'',
userphone:'',
code:'',
rangenum:''
}
},
onLoad(){
this.getuserinfo()
},
methods: {
getpic(e) {
console.log('我是子组件的值', e);
this.rangenum = e
},
enterphone(e) {
this.phone = e.detail.value
},
// 获取用户信息
getuserinfo() {
let that = this;
var url = 'member/index';
var params = {
}
console.log('7766554', params)
app.post(url, params).then((res) => {
console.log(res);
that.userinfok = res.data.data;
}).catch((err) => {
})
},
emtermoney(e) {
var money;
if (/^(\d?)+(\.\d{0,2})?$/.test(e.detail.value)) { //正则验证,提现金额小数点后不能大于两位数字
money = e.detail.value;
} else {
money = e.detail.value.substring(0, e.detail.value.length - 1);
}
this.money = money
},
search() {
let that=this;
if (!(/^1[3456789]\d{9}$/.test(that.phone))) {
wx.showToast({
title: '请输入正确手机号',
icon: 'none'
})
return false;
}
var url = 'member/get_user';
var params = {
mobile:that.phone
}
console.log('7766554', params)
app.post(url, params).then((res) => {
console.log(res);
that.userinfo=res.data.data;
}).catch((err) => {
console.log(err)
uni.showToast({
title:err.msg,
icon:'none'
})
})
},
// 输入验证码
enteryan(e) {
this.code = e.detail.value
},
zhuanzhang(){
let that = this;
if(that.phone==''){
uni.showToast({
title:'请输入手机号查找用户信息',
icon:'none'
})
return false
}
if(that.money==''){
uni.showToast({
title:'请输入转账金额',
icon:'none'
})
return false
}
if(that.code==''){
uni.showToast({
title:"请输入验证码",
icon:'none'
})
return false
}
if(that.code!=that.rangenum){
uni.showToast({
title:'请输入正确的验证码',
icon:'none'
})
return false;
}
var url = 'member/transfer';
var params = {
user_id:that.userinfo.id,
money:that.money
}
console.log('7766554', params)
app.post(url, params).then((res) => {
console.log(res);
uni.showToast({
title:'转账成功',
icon:"none"
})
setTimeout(function(){
// uni.navigateBack({
// checked:true
// })
let userinfo=JSON.stringify(that.userinfo)
uni.navigateTo({
url:'/pages/usercenter/transferDetails?userinfo='+userinfo+'&money='+that.money
})
},1500)
}).catch((err) => {
console.log(err)
uni.showToast({
title:err.msg,
icon:"none"
})
})
},
}
}
</script>
<style>
/* @import url('../../base/login'); */
page {
/* overflow-y: hidden; */
}
.yanzhengk{
width:170rpx;
}
.boxitemleftkk {
color: #3D454C;
font-size: 28rpx;
width: 130rpx;
}
.next {
width: 686rpx;
height: 88rpx;
background: #C29445;
color: #fff;
font-size: 32rpx;
text-align: center;
line-height: 88rpx;
position: fixed;
bottom: 14rpx;
left: 32rpx;
}
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);
}
.searchbox {
height: 104rpx;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #EAEAEA;
box-sizing: border-box;
}
.fillTel {
width: 360rpx;
font-size: 36rpx;
font-family: PingFangHK-Regular, PingFangHK;
font-weight: 400;
color: rgba(189, 196, 206, 1);
margin-right: ;
}
.searchbtn {
display: flex;
align-items: center;
justify-content: center;
width: 160rpx;
height: 64rpx;
border-radius: 8rpx;
border: 1px solid rgba(255, 148, 23, 1);
font-size: 24rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: rgba(255, 148, 23, 1);
}
.searchbtn .icon {
width: 32rpx;
margin-right: 16rpx;
}
.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;
border-radius: 50%;
}
.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;
}
</style>