liudan 10 months ago
parent f2b7bb90e0
commit 7daa287b25
  1. 10
      api/user.js
  2. 6
      pages.json
  3. 2
      pages/users/user_bill/index.vue
  4. 26
      pages/users/user_money/index.vue
  5. 213
      pages/users/user_money/zhuanzhang.vue

@ -768,4 +768,12 @@ export function registrateRecordDetail(id) {
*/
export function systemFormData(id) {
return request.get(`system/form/info/${id}`, {}, {noAuth: true})
}
}
// 短信发送
export function setCode(data) {
return request.get(`user/transferVerify`, data)
}
// 转账
export function zhuanzhangApi(data) {
return request.post(`user/transfer`, data)
}

@ -221,6 +221,12 @@
"navigationBarTitleText": "我的余额"
}
},
{
"path": "user_money/zhuanzhang",
"style": {
"navigationBarTitleText": "转账"
}
},
{
"path": "user_bill/index",
"style": {

@ -64,7 +64,7 @@
},
props:{
type:{
default:0
default:3
}
},
watch:{

@ -8,16 +8,16 @@
<view class='assets'>
<view style="display: flex;align-items: center;">
<text>总资产()</text>
<image src="/static/images/show.png" mode="widthFix" v-if="isShowNum" @click="showNumHandle(true)"></image>
<image src="/static/images/hide.png" mode="widthFix" v-if="!isShowNum" @click="showNumHandle(false)"></image>
<image src="/static/images/show.png" mode="widthFix" v-if="isShowNum" @click="showNumHandle(false)"></image>
<image src="/static/images/hide.png" mode="widthFix" v-if="!isShowNum" @click="showNumHandle(true)"></image>
</view>
<view class='money'>{{isShowNum?userInfo.now_money || 0:'******'}}</view>
</view>
<!-- #ifdef APP-PLUS || H5 -->
<view style="display: flex;">
<navigator url="/pages/users/user_payment/index" hover-class="none" class='recharge t-color'>转账</navigator>
<navigator url="/pages/users/user_money/zhuanzhang" hover-class="none" class='recharge t-color'>转账</navigator>
<navigator v-if="recharge_switch == 1" url="/pages/users/user_payment/index" hover-class="none" class='recharge t-color'>充值</navigator>
<navigator url="/pages/users/user_payment/index" hover-class="none" class='recharge t-color'>提现</navigator>
<navigator url="/pages/users/user_cash/index" hover-class="none" class='recharge t-color'>提现</navigator>
</view>
<!-- #endif -->
@ -41,7 +41,7 @@
</view>
<view class='item'>
<view>贡献值</view>
<view class='money'>{{userInfo.total_consume || 0}}</view>
<view class='money'>{{userInfo.contribute_value || 0}}</view>
</view>
</view>
</view>
@ -67,9 +67,9 @@
</navigator>
</view> -->
<view class='nav acea-row row-middle'>
<view class='item' @click="getRecords(0)">
<view :class="selected==0?'text active':'text'">转账记录</view>
<view class='pictrue' v-show="selected==0">
<view class='item' @click="getRecords(3)">
<view :class="selected==3?'text active':'text'">转账记录</view>
<view class='pictrue' v-show="selected==3">
</view>
@ -88,6 +88,13 @@
</view>
</view>
<view class='item' @click="getRecords(4)">
<view :class="selected==4?'text active':'text'">贡献值明细</view>
<view class='pictrue' v-show="selected==4">
</view>
</view>
</view>
</view>
<view>
@ -125,7 +132,7 @@
},
data() {
return {
selected:0,
selected:3,
domain: HTTP_REQUEST_URL,
userInfo: {},
hostProduct: [],
@ -155,6 +162,7 @@
},
showNumHandle(val){
this.isShowNum=val;
},
getUserInfo(){
getUserInfo().then(res=>{

@ -0,0 +1,213 @@
<template>
<view class="zhuanzhang">
<view class="title">
可转账金额
</view>
<view class="num">
3000
</view>
<view class="form">
<view class="title">
提现金额
</view>
<view class="">
<view class="money">
<text></text>
<input type="digit" class="moneyInput" v-model="form.money" placeholder="请输入转账金额"/>
</view>
<view class="money">
<input type="number" v-model="form.account" placeholder="请输入对方账号"/>
</view>
<view class="money">
<input type="number" v-model="form.phone" placeholder="请输入手机号"/>
</view>
<view class="money codeContent">
<input v-model="form.code" class="codeInput" placeholder="请输入验证码"/>
<view class="codeBtn" @click="getCodeHandle" v-if="canClick">获取验证码</view>
<view class="codeBtn" v-if="!canClick">{{timeNum}}s后再次获取</view>
</view>
</view>
</view>
<view class="submitBtn" @click="submitHandle">
确认转账
</view>
</view>
</template>
<script>
import {
setCode,zhuanzhangApi
} from '@/api/user.js'
export default{
data(){
return{
form:{
money:null,
account:null,
phone:null,
code:null,
},
timer:null,
timeNum:60,
canClick:true,
}
},
beforeDestroy() {
clearInterval(this.timer);
},
methods:{
getCodeHandle(){
if(!this.form.phone){
uni.showToast({
title: '请输入手机号码',
icon: 'none'
})
return;
}
let reg = /^1[3-9]\d{9}$/
if(!reg.test(this.form.phone)){
uni.showToast({
title: '请输入正确的手机号码',
icon: 'none'
})
return;
}
setCode({phone:this.form.phone}).then(res => {
uni.showToast({
title: res.message,
icon: 'none'
})
this.timeNum = 60;
this.canClick = false;
this.timer = setInterval(()=>{
if(this.timeNum==0){
clearInterval(this.timer);
this.canClick = true;
}else{
this.timeNum--;
}
},1000)
})
},
submitHandle(){
if(!this.form.money){
uni.showToast({
title: '请输入转账金额',
icon: 'none'
})
return;
}
if(!this.form.account){
uni.showToast({
title: '请输入对方账号',
icon: 'none'
})
return;
}
if(!this.form.phone){
uni.showToast({
title: '请输入手机号码',
icon: 'none'
})
return;
}
let reg = /^1[3-9]\d{9}$/
if(!reg.test(this.form.phone)){
uni.showToast({
title: '请输入正确的手机号码',
icon: 'none'
})
return;
}
let params={
phone:this.form.phone,
from_account:this.form.account,
sms_code:this.form.code,
money:this.form.money
}
zhuanzhangApi(params).then(res=>{
console.log(res,"00")
})
},
}
}
</script>
<style lang="scss" scoped>
.zhuanzhang{
min-height: calc(100vh);
background: #F5F5F7;
padding:34rpx 31rpx;
.title{
font-weight: 400;
font-size: 30rpx;
color: #333333;
}
.num{
margin-top:39rpx;
font-family: Alibaba PuHuiTi;
font-weight: 400;
font-size: 60rpx;
color: #222222;
}
.form{
background: #FFFFFF;
border-radius: 20rpx;
padding:36rpx 30rpx;
.title{
font-family: Alibaba PuHuiTi;
font-weight: 400;
font-size: 30rpx;
color: #09090B;
}
.money{
padding:30rpx 0;
border-bottom: 1px solid #EAEAEA;
position: relative;
input{
font-size: 28rpx;
}
text{
position: absolute;
left:0;
top:30rpx;
font-weight: 400;
font-size: 30rpx;
color: #09090B;
}
.moneyInput{
padding-left: 40rpx;
}
}
.codeContent{
display: flex;
align-items: center;
.codeInput{
flex:1;
}
.codeBtn{
font-weight: 400;
font-size: 30rpx;
color: #116636;
}
}
}
.submitBtn{
margin:40rpx 54rpx;
background: linear-gradient(-90deg, #89B929, #116636);
border-radius: 50px;
padding:36rpx 0;
font-weight: 500;
font-size: 30rpx;
color: #FFFFFF;
text-align: center;
}
}
</style>
Loading…
Cancel
Save