医生提交1212

This commit is contained in:
zoujiandong
2023-12-12 10:58:58 +08:00
parent 1e9ea2a70f
commit 89be7ccae1
30 changed files with 1083 additions and 157 deletions
+2
View File
@@ -17,6 +17,7 @@ Page({
bank_name : "xx银行",
bank_card_code_mask: "888 xxxx xxxx 888",
withdrawal_amount: "xxxx",
amount_total:'',
income_tax: "xx",
contactKeFu: false,
sub_visible: false,
@@ -91,6 +92,7 @@ Page({
bank_name : response.data.bank.bank_name,
bank_card_code_mask: response.data.bank.bank_card_code_mask,
withdrawal_amount: response.data.withdrawal_amount,
amount_total:response.data.amount_total,
order_inquiry_ids: response.data.order_inquiry_ids,
bank_card_name: response.data.bank.bank_card_name_mask,
income_tax: response.data.income_tax,
+21 -7
View File
@@ -21,30 +21,44 @@
<view class="cash" wx:if="{{!skeleton_loading}}">
<view class="cash_top">
<view class="cash_left">
<view class="cash_left_title">实际到账(元)</view>
<!-- <view class="cash_left_title">实际到账(元)</view> -->
<view class="cash_num">
<view>
<text style="font-size: 42rpx;">¥</text>{{withdrawal_amount}}
<text style="font-size: 34rpx;">账户余额:¥</text>{{amount_total}}
</view>
</view>
<view class="shui">扣除个人所得税:
<text style="color: red;">{{income_tax}}元</text>
</view>
</view>
<view class="cash_right">
<!-- <view class="cash_right">
<navigator url="/Pages/yishi/wenzhenorderV2/index" open-type="navigate" hover-class="other-navigator-hover">
<van-button custom-style="text-align: center;border-radius: 10rpx;padding: 20rpx 50rpx;" color="linear-gradient(310deg, #FF931A 0%, #FF931A 0%, #FCB75D 100%);">
查看订单
</van-button>
</navigator>
</view>
</view> -->
</view>
<view class="cash_bottom">
<navigator url="/Pages/yishi/cashrecord/index" open-type="navigate" hover-class="other-navigator-hover">
提现记录 >
</navigator>
<view class="title">
实际到账(元)
</view>
<view class="moneybox">
<view class="money"><text class="mark">¥</text><text class="moneyNum">{{withdrawal_amount}}</text></view>
<navigator url="/Pages/yishi/wenzhenorderV2/index" open-type="navigate" hover-class="other-navigator-hover">
<van-button custom-style="text-align: center;border-radius: 10rpx;height:70rpx;width:200rpx;" color="linear-gradient(310deg, #FF931A 0%, #FF931A 0%, #FCB75D 100%);">
查看订单
</van-button>
</navigator>
</view>
</view>
</view>
<view class="tixian">
<navigator url="/Pages/yishi/cashrecord/index" open-type="navigate" hover-class="other-navigator-hover">
提现记录 <van-icon name="arrow" />
</navigator>
</view>
<view class="cash_loading" wx:if="{{skeleton_loading}}">
<t-skeleton theme="text" row-col="{{[{width: '30%'},{width: '80%'},{width: '50%'},{width: '30%'}]}}" animation="gradient" loading="{{skeleton_loading}}" />
</view>
+43 -7
View File
@@ -66,7 +66,7 @@ page{
}
.cash{
width: 92vw;
height: 300rpx;
margin: 20rpx auto;
background-color: #fff;
border-radius: 20rpx;
@@ -74,20 +74,26 @@ page{
flex-direction: column;
}
.cash_top{
margin-top: 20rpx;
margin-top:30rpx;
display: flex;
flex: 3;
}
.cash_bottom{
padding:20rpx 20rpx 30rpx;
border-top: 1px solid #E5E5E5;
flex: 1.2;
color: #3CC7C0;
font-size: 32rpx;
display: flex;
align-items: center;
justify-content: flex-end;
flex-direction: column;
padding-right: 20rpx;
}
.cash_bottom .title{
margin-top: 10rpx;
font-size: 30rpx;
color: #000000;
}
.cash_left{
flex: 3;
display: flex;
@@ -104,10 +110,12 @@ page{
flex: 2;
display: flex;
align-items: center;
font-size: 64rpx;
font-size: 34rpx;
}
.shui{
flex: 1;
margin-top: 20rpx;
margin-bottom: 30rpx;
display: flex;
align-items: center;
font-size: 28rpx;
@@ -154,3 +162,31 @@ page{
color: #3CC7C0;
}
.moneybox{
display: flex;
}
.moneybox{
display: flex;
margin-top: 20rpx;
align-items: center;
justify-content: space-between;
}
.money .mark{
font-size: 42rpx;
font-weight: 400;
color: #333333;
}
.moneyNum{
font-size: 64rpx;
font-family: ArialMT;
color: #333333;
}
.tixian{
display: flex;
margin:0 30rpx;
color: #3CC7C0;
font-size: 32rpx;
align-items: center;
justify-content: flex-end;
}