zoujiandong 70ddba15f1 4.23
2024-04-23 16:03:07 +08:00

80 lines
3.3 KiB
Plaintext

<te-nav-bar navbar-data='{{navbarData}}' ></te-nav-bar>
<view class="container">
<!-- <view class="top">
<view class="top_txt">
<view style="font-size: 30rpx;">
账户当前余额:
</view>
<view style="font-size: 40rpx;">
¥ {{balance_account}}
</view>
</view>
</view> -->
<view class="monthbox">
<view class="titlebox">
<view class="name">账户余额(元)</view>
<van-icon name="question-o" class="question" bindtap="showDialog"/>
</view>
<view class="accoutbox">
<view class="accountNum"><text class="mark">¥</text>{{balance_account}}</view>
<view class="tixian" bindtap="goTixian">提现</view>
</view>
<view class="line"></view>
<view class="cashbox">
<view class="today">
<view class="titlename">今日接诊收入</view>
<view class="money">¥{{doctor_today_inquiry_total}}</view>
</view>
<view class="finish">
<view class="titlename">待入账</view>
<view class="money">¥{{doctor_day_completed_amount_total}}</view>
</view>
</view>
<!-- <view class="month" bindtap="showPop">{{dateText}}<van-icon name="arrow-down" color="#999" size="40rpx" /></view>
<view class="account">
<view class="account_left" style="font-size: 30rpx;">当月收益:<text style="font-size: 40rpx;">¥{{amount_total_month}}</text></view>
<view class="account_right" style="font-size: 30rpx;">当月已提取:<text style="font-size: 40rpx;">¥{{withdrawal_amount_month}}</text></view>
</view> -->
</view>
<view class="txt_title" bindtap="showPop">
{{dateText}}<van-icon name="arrow-down" color="#333" size="34rpx" />
</view>
<view class="content">
<van-cell size="large" bindtap="goDetail" data-url="/user/pages/yishi/orderdetail/index" data-md="{{item.month}}" title-style="font-size: 30rpx;" title="{{item.month}}月" value="" is-link wx:for="{{bill}}" />
<van-empty description="暂无账单" wx:if="{{ bill.length == 0 }}" />
</view>
<van-image bind:click="go" data-url="/user/pages/agreement_page/index?agreement_id=13" style="position: fixed; right: 0;bottom: 262rpx;" src="{{static_host}}/applet/doctor/static/images/yishi/account_rule.png" fit="heightFix" height="84rpx" aria-label="role" />
<t-picker
visible="{{dateVisible}}"
value="{{dateValue}}"
data-key="date"
title="选择日期"
cancelBtn="取消"
confirmBtn="确认"
bindchange="onPickerChange"
bindpick="onColumnChange"
bindcancel="onPickerCancel"
>
<t-picker-item options="{{years}}"></t-picker-item>
<!-- <t-picker-item options="{{seasons}}"></t-picker-item> -->
</t-picker>
<t-dialog
visible="{{ dialog_visible }}"
title="温馨提示"
>
<view slot="content" class="slotcontent">
<view class="msg">1、账户余额表示未提现的所有已经结束的订单金额总和</view>
<view class="msg">2、今日接诊收入表示今日已经接诊的订单金额总和 </view>
<view class="msg">3、待入账表示单次问诊已完成未结束的订单金额总和+健康包/随访包服务开始后的订单金额总和
</view>
</view>
<view slot="confirm-btn" class="dialog dialog_confirm_btn" bindtap="confirmDialog">
确定
</view>
</t-dialog>
</view>