12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <view class="container">
- <tui-list-cell hover="{{false}}" bindtap="timePickerShow">
- <view class="tui-line-cell">
- <view class="tui-title">起止时间</view>
- <input placeholder-class="phcolor" class="tui-input" placeholder="请选择起止时间" type="text" disabled="true" value="{{dataStr}}" />
- </view>
- </tui-list-cell>
- <tui-list-cell hover="{{false}}">
- <view class="tui-line-cell">
- <view class="tui-title">总额</view>
- <label class="tui-lable">{{totalAmount}}元</label>
- </view>
- </tui-list-cell>
- <view class="container" style="padding-top:{{CustomBar}}px;">
- <view>
- <block wx:for="{{list}}" wx:key="{{index}}">
- <tui-cell tui-cell-class="tui-msg">
- <view class="tui-msg-box">
- <view class="tui-msg-item">
-
- <view class="tui-msg-content" style="font-size:28rpx;margin-top:18rpx">
- {{list[index].mark}}
- </view>
-
- <view class="tui-msg-content" style="font-size:28rpx;margin-top:7rpx">
- {{list[index].createTime}}</view>
- </view>
- </view>
- <view class="tui-msg-right">
- <view class="tui-msg-time" style="color:red;font-size:28rpx;font-weight:800;">{{list[index].number}}元</view>
- </view>
- </tui-cell>
- </block>
- </view>
- </view>
- <time-picker pickerShow="{{isPickerShow}}" id="picker" wx:if="{{isPickerRender}}" bind:hidePicker="pickerHide"
- bind:setPickerTime="setPickerTime" config="{{pickerConfig}}"></time-picker>
- </view>
|