| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <view class="container" style="padding-bottom: {{ safeBottom }}px;">
- <view class="container__top" style="position: sticky; top: 0; z-index: 999;">
- <!-- 导航栏 -->
- <van-nav-bar custom-style="background-color: #407DB8">
- <van-icon slot="left" name="arrow-left" size="25px" color="#fff" bind:click="backToParent"/>
- <text slot="title" style="color: #fff;">历史资金流水</text>
- </van-nav-bar>
- </view>
- <!-- 过滤条件 -->
- <view class="result-view" style="background-color: white;">
- <text>开始日期:</text>
- <van-button size="small" id="startdate" custom-class="startdate" plain type="default" bind:click="onButtonPressed">{{ startdate }}</van-button>
- <text>结束日期:</text>
- <van-button size="small" id="enddate" custom-class="enddate" plain type="default" bind:click="onButtonPressed" >{{ enddate }}</van-button>
- <van-button size="small" id="search" custom-class="search" type="info" bind:click="onButtonPressed" >查询</van-button>
- </view>
- <view class="container__list-top">
- <view class="container__list-top__row" wx:for="{{ titles }}" wx:for-item="itm" wx:for-index="idx" wx:key="idx">
- <text class="title">{{ itm}}</text>
- </view>
- </view>
- <view class="container__list-content">
- <view class="container__list-content__row" wx:for="{{ datas }}" wx:for-item="itm" wx:for-index="idx" wx:key="createtime">
- <text class="createtime">{{ itm.createtime }}</text>
- <text class="operatetypename">{{ itm.operatetypename }}</text>
- <text class="amount">{{ itm.amount }}</text>
- </view>
- </view>
- <!-- 选择日期 -->
- <van-calendar title="请选择日期" show="{{ show }}" min-date="{{ minDate }}" bind:close="onClose" bind:confirm="onConfirm" />
- </view>
- <!-- empty -->
- <van-empty wx:if="{{ isEmpty }}" class="custom-image" description="无数据"/>
|