|
|
|
@ -8,12 +8,12 @@ |
|
|
|
|
<view class='nav acea-row'> |
|
|
|
|
<view class='item'> |
|
|
|
|
<view>账户复购积分数</view> |
|
|
|
|
<view class='num'>{{huitong || 0}}</view> |
|
|
|
|
<view class='num'>{{huitong || 0.00}}</view> |
|
|
|
|
|
|
|
|
|
</view> |
|
|
|
|
<view class='item'> |
|
|
|
|
<view>账户提现积分数</view> |
|
|
|
|
<view class='num'>{{huitong_frozen || 0}}</view> |
|
|
|
|
<view class='num'>{{huitong_frozen || 0.00}}</view> |
|
|
|
|
|
|
|
|
|
</view> |
|
|
|
|
<!-- <view class='item'> |
|
|
|
@ -447,8 +447,10 @@ |
|
|
|
|
getUserInfo() { |
|
|
|
|
let that = this; |
|
|
|
|
getUserInfo().then((res)=>{ |
|
|
|
|
this.huitong = Math.floor(Number(res.data.assets.integral_buy)) |
|
|
|
|
this.huitong_frozen = Math.floor(Number(res.data.assets.integral_withdraw));//提现积分 |
|
|
|
|
// this.huitong = Math.floor(Number(res.data.assets.integral_buy)) |
|
|
|
|
// this.huitong_frozen = Math.floor(Number(res.data.assets.integral_withdraw));//提现积分 |
|
|
|
|
this.huitong = Number(res.data.assets.integral_buy).toFixed(2) |
|
|
|
|
this.huitong_frozen = Number(res.data.assets.integral_withdraw).toFixed(2);//提现积分 |
|
|
|
|
this.mobilePhoneNum = res.data.phone |
|
|
|
|
this.getIntegralList() |
|
|
|
|
// getIntegralInfo().then(function(res) { |
|
|
|
|