医生提交1212
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
<!-- 提现记录 -->
|
||||
<te-nav-bar navbar-data='{{navbarData}}' ></te-nav-bar>
|
||||
<wxs src="../../../filters/filter.wxs" module="moduleFilter"></wxs>
|
||||
<view class="container">
|
||||
<view class="top">
|
||||
<view class="top_txt" bindtap="onDatePicker">
|
||||
@@ -10,19 +11,24 @@
|
||||
|
||||
<view class="data_item" wx:for="{{record_list}}">
|
||||
<view class="data_item_top">
|
||||
<view class="data_item_top_icon">
|
||||
|
||||
<view class="data_item_top_content">
|
||||
<view class="namebox">
|
||||
<view class="data_item_top_icon">
|
||||
<van-image custom-style="" src="{{static_host}}/applet/doctor/static/images/yishi/bankcard/js_icon.png" fit="heightFix" height="50rpx" aria-label="role" />
|
||||
</view>
|
||||
<view class="data_item_top_content">
|
||||
<view class="name">{{item.account_name}}<text style="margin-left:20rpx;font-size: 28rpx;color:#999;">(尾号{{item.bank_card_code_four}})</text></view>
|
||||
<view class="date">{{item.created_at}}</view>
|
||||
</view>
|
||||
<view class="status_box">
|
||||
<!-- 审核状态(1:审核中 2:审核通过 3:审核未通过) -->
|
||||
<view class="status {{item.examine_status==1?'paying':item.examine_status==2?'paysuccess':item.examine_status==3?'payfail':''}}">{{item.examine_status==1?'结算中':item.examine_status==2?'结算成功':item.examine_status==3?'结算失败':'未知'}}</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="data_item_top_num">
|
||||
<view class="jine">¥{{item.actual_withdrawal_amount}}</view>
|
||||
<view class="status_box">
|
||||
<!-- 审核状态(1:审核中 2:审核通过 3:审核未通过) -->
|
||||
<view class="status status_ing">{{item.examine_status==1?'审核中':item.examine_status==2?'审核通过':item.examine_status==3?'审核未通过':'未知'}}</view>
|
||||
</view>
|
||||
<view class="date">{{moduleFilter.transforDay(item.created_at,"noyear")}}</view>
|
||||
<view class="jine"><text class="jinename">实际到账金额:</text>¥{{item.actual_withdrawal_amount}}</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
<view class="data_item_bottom">个人所得税:¥{{item.income_tax}}</view>
|
||||
|
||||
@@ -25,46 +25,57 @@ page{
|
||||
.data_item{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-bottom: 50rpx;
|
||||
height: 200rpx;
|
||||
margin-bottom: 20rpx;
|
||||
background-color: #ffffff;
|
||||
border-radius: 20rpx;
|
||||
padding: 20rpx 0 0 0;
|
||||
padding: 30rpx 0 0 0;
|
||||
}
|
||||
.data_item_top{
|
||||
flex: 2;
|
||||
display: flex;
|
||||
margin:0 30rpx;
|
||||
border-bottom: 1px solid #E7E7E7;
|
||||
}
|
||||
.data_item_top_icon{
|
||||
flex: 1;
|
||||
|
||||
text-align: center;
|
||||
height: 70%;
|
||||
align-self: start;
|
||||
|
||||
}
|
||||
.data_item_top_content{
|
||||
flex: 3;
|
||||
|
||||
justify-content: space-between;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.name{
|
||||
margin-left: 10rpx;
|
||||
font-size: 32rpx;
|
||||
color: #333333;
|
||||
flex: 1;
|
||||
|
||||
}
|
||||
.date{
|
||||
flex: 1;
|
||||
font-size: 28rpx;
|
||||
display: flex;
|
||||
margin-left: 28rpx;
|
||||
color: #999999;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.data_item_top_num{
|
||||
flex: 2;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin:0 30rpx 25rpx;
|
||||
|
||||
text-align: center;
|
||||
}
|
||||
.jinename{
|
||||
font-size: 30rpx;
|
||||
font-weight: 400;
|
||||
color: #666666;
|
||||
}
|
||||
.namebox{
|
||||
display: flex;
|
||||
}
|
||||
.jine{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
color: #FF0000;
|
||||
font-size: 34rpx;
|
||||
}
|
||||
@@ -73,27 +84,38 @@ page{
|
||||
justify-content: center;
|
||||
}
|
||||
.status{
|
||||
border-radius: 10px;
|
||||
font-size: 24rpx;
|
||||
padding: 10rpx 40rpx;
|
||||
width: 125rpx;
|
||||
height: 50rpx;
|
||||
background: #FFF2E8;
|
||||
border-radius: 10rpx;
|
||||
margin-bottom: 20rpx;
|
||||
font-size: 24rpx;
|
||||
font-weight: 400;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
.status_ing{
|
||||
background-color: #FFF2E8;
|
||||
.status.paying{
|
||||
background: #FFF2E8;
|
||||
color: #FA541C;
|
||||
}
|
||||
.status_end{
|
||||
.status.paysuccess{
|
||||
background: #E2FFFE;
|
||||
color: #3CC7C0;
|
||||
}
|
||||
.status.payfail{
|
||||
background-color: #C5C5C5;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
.data_item_bottom{
|
||||
flex: 1;
|
||||
padding:20rpx 30rpx 26rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
margin-right: 20rpx;
|
||||
color: #666;
|
||||
font-size: 32rpx;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
.t-picker__confirm{
|
||||
color: #3CC7C0 !important;
|
||||
|
||||
Reference in New Issue
Block a user