3f535f30
杨鑫
'初始'
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!-- 我的账户 -->
<template>
<view>
<global-loading />
<view class="container" v-if="ifShow">
<view class="balance">
</view>
<view class="balanceInfo">
<view class="infoBox">
<view v-if="accountInfo.price != null " class="cur-balance">{{accountInfo.price}}</view>
<view v-else class="cur-balance">0.00</view>
<view class="mar-top-20">余额</view>
</view>
</view>
<view class="balance-operation">
<view class="item-btn" @click="memberAccountWithdraw">
|
3f535f30
杨鑫
'初始'
|
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
|
</view>
</view>
</view>
</view>
</template>
<script>
const NET = require('../../utils/request')
const API = require('../../config/api')
export default {
data() {
return {
accountInfo:[],
ifShow: false
}
},
onShow() {
this.getBalance()
},
onBackPress(e) {
if (e.from === 'navigateBack') {
return false;
}
this.back();
return true;
},
methods: {
back(){
uni.switchTab({
url:'../../pages/tabbar/user/index'
});
},
getBalance(){
const _ = this
// uni.showLoading({
// mask: true,
// title: '加载中...'
// })
NET.request(API.GetDistributor,{},"GET").then(res => {
uni.hideLoading()
this.ifShow = true
_.accountInfo = res.data
}).catch(res => {
})
},
memberAccountWithdraw(){
if(this.accountInfo.price <= 0 ){
uni.showToast({
title: "您暂时没有余额,不能提现",
duration: 2000,
icon: 'none'
})
}else{
uni.navigateTo({
url:'withdraw'
})
}
}
},
filters: {
parseMoney(money){
return parseFloat(money/100).toFixed(2)
}
}
}
</script>
<style lang="scss">
page {
background: #F8F8F8;
}
.container{
background: #f8f8f8;
.balance{
display: block;
height: 400rpx;
|
3f535f30
杨鑫
'初始'
|
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
|
height: 342rpx;
background-size: cover;
margin: -300rpx auto 0 auto;
display: flex;
justify-content: center;
align-items: center;
border-radius: 20rpx;
.infoBox {
text-align: center;
.cur-balance{
font-size:60rpx;
color: #71521B;
}
}
}
.balance-operation {
margin-top: 38rpx;
padding: 0 24rpx;
.item-btn {
}
}
}
.item-btn{
width: 100%;
height: 100upx;
display: flex;
flex-direction: row;
align-items: center;
box-sizing: border-box;
background-color: #fff;
padding: 0 30upx;
.item-btn-icon{
width: 90upx;
height: 90upx;
}
.item-btn-text{
font-size:28upx;
margin-left: 20upx;
font-weight:500;
flex: 1;
color:rgba(102,102,102,1);
}
.item-btn-right{
width: 60upx;
height: 60upx;
}
}
.mt20{
margin-top: 20upx;
}
.mt1{
margin-top: 1upx;
}
</style>
|