修复充值,余额提现

This commit is contained in:
weipengfei 2023-08-09 11:18:45 +08:00
parent ca4d6ffd83
commit dfbb94c029
4 changed files with 18 additions and 5 deletions

View File

@ -1,12 +1,12 @@
<template> <template>
<view class="c_card"> <view class="c_card">
<view class="f_card" @click="naviTo('/subpkg/topUp/topUp')"> <view class="f_card">
<view class="item"> <view class="item" @click="naviTo('/subpkg/topUp/topUp')">
<view>公司账户余额()</view> <view>公司账户余额()</view>
<view class="price" v-if="company.deposit">{{cCount(company.deposit)}}</view> <view class="price" v-if="company.deposit">{{cCount(company.deposit)}}</view>
<view class="price" v-else>0.00</view> <view class="price" v-else>0.00</view>
</view> </view>
<view class="item"> <view class="item" @click="naviTo('/subpkg/withdrawDeposit/withdrawDeposit')">
<view>公司收益金额()</view> <view>公司收益金额()</view>
<view class="price" v-if="company.company_money">{{cCount(company.company_money)}}</view> <view class="price" v-if="company.company_money">{{cCount(company.company_money)}}</view>
<view class="price" v-else>0.00</view> <view class="price" v-else>0.00</view>

View File

@ -145,6 +145,9 @@
</script> </script>
<style lang="scss"> <style lang="scss">
page{
}
.fixed_box { .fixed_box {
width: 100%; width: 100%;
position: fixed; position: fixed;

View File

@ -213,6 +213,10 @@
font-size: 32rpx; font-size: 32rpx;
font-weight: 400; font-weight: 400;
color: #333333; color: #333333;
text:nth-child(1){
flex-shrink: 0;
margin-right: 18rpx;
}
} }
} }
} }
@ -221,6 +225,7 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding: 0 28rpx; padding: 0 28rpx;
margin-top: 50rpx;
.title { .title {
font-size: 32rpx; font-size: 32rpx;

View File

@ -6,7 +6,8 @@
<view class="title">提现信息</view> <view class="title">提现信息</view>
<view class="item"> <view class="item">
<text>提现账户</text> <text>提现账户</text>
<text>{{$store.state.app.userInfo.account||''}}</text> <text v-if="$store.state.app.userInfo.admin_id">{{$store.state.app.userInfo.company.company_name||''}}</text>
<text v-else>{{$store.state.app.userInfo.account||''}}</text>
</view> </view>
<view class="item"> <view class="item">
<text>可用余额</text> <text>可用余额</text>
@ -141,7 +142,7 @@
.card { .card {
width: 694rpx; width: 694rpx;
height: 180rpx; min-height: 180rpx;
background: #FFFFFF; background: #FFFFFF;
margin-top: 38.55rpx; margin-top: 38.55rpx;
box-shadow: 0rpx 0rpx 18rpx 2rpx rgba(50, 116, 249, 0.1); box-shadow: 0rpx 0rpx 18rpx 2rpx rgba(50, 116, 249, 0.1);
@ -167,6 +168,10 @@
font-size: 32rpx; font-size: 32rpx;
font-weight: 400; font-weight: 400;
color: #333333; color: #333333;
text:nth-child(1){
flex-shrink: 0;
margin-right: 18rpx;
}
} }
} }
} }