You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <view class='list'>
- <view class='clearfix'>
- <text class='fl'>账单编号:</text>
- <text class='fr'>{{detailData.merchantId}}</text>
- </view>
- <view class='clearfix'>
- <text class='fl'>账单类型:</text>
- <text class='fr'>{{detailData.billTypeName}}</text>
- </view>
- <view class='clearfix'>
- <text class='fl'>账单周期:</text>
- <text class='fr'>{{detailData.starttime}}至{{detailData.endtime}}</text>
- </view>
- <view class='clearfix'>
- <text class='fl'>应付金额:</text>
- <text class='fr'>{{detailData.receivePay}}</text>
- </view>
- <view class='clearfix'>
- <text class='fl'>已付金额:</text>
- <text class='fr'>{{detailData.pay}}</text>
- </view>
- <view class='clearfix'>
- <text class='fl'>欠费金额:</text>
- <button wx:if="{{!flag}}" class='fr' hover-class="actives" bindtap="gotopay">去缴费</button>
- <text class='fr'>{{detailData.owe}}
- </text>
- </view>
- <view class='clearfix'>
- <text class='fl'>账单备注:</text>
- <text class='fr'>{{detailData.remark}}</text>
- </view>
- <view class='clearfix'>
- <text class='fl'>商户名称:</text>
- <text class='fr'>{{detailData.merchantName}}</text>
- </view>
- <view class='clearfix'>
- <text class='fl'>商户联系信息:</text>
- <text class='fr'>{{detailData.merchantLinkPerson}}</text>
- </view>
- <view class='clearfix'>
- <text class='fl'>手机号:</text>
- <text>
- <text style="color:#409eff;margin-left:20rpx;" class='fr' data-phone="{{detailData.merchantPhone}}" bindtap="makePhoneCall">拨打</text>
- <text class='fr'>{{detailData.merchantPhone}}</text>
- </text>
- </view>
- </view>
-
- <view class="btn">
- <button hover-class="actives" bindtap="goBack">返回</button>
- </view>
-
- <view class='clearfix'>
- <text class='fl'>账单历史</text>
- </view>
-
- <view class="table">
- <view class="tr bg-w">
- <view class="th">操作用户</view>
- <view class="th">手机号</view>
- <view class="th">操作描述</view>
- <view class="th">日期</view>
- <view class="th">备注</view>
- </view>
- <block wx:for="{{list}}" wx:key="index">
- <view class="tr">
- <view class="td">{{item.userName}}</view>
- <view class="td">{{item.phone}}</view>
- <view class="td">{{item.details}}</view>
- <view class="td">{{item.createtime}}</view>
- <view class="td">{{item.remark}}</view>
- </view>
- </block>
- </view>
|