index.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <view class="container">
  2. <tui-list-cell hover="{{false}}" bindtap="timePickerShow">
  3. <view class="tui-line-cell">
  4. <view class="tui-title">起止时间</view>
  5. <input placeholder-class="phcolor" class="tui-input" placeholder="请选择起止时间" type="text" disabled="true" value="{{dataStr}}" />
  6. </view>
  7. </tui-list-cell>
  8. <tui-list-cell hover="{{false}}">
  9. <view class="tui-line-cell">
  10. <view class="tui-title">总额</view>
  11. <label class="tui-lable">{{totalAmount}}元</label>
  12. </view>
  13. </tui-list-cell>
  14. <view class="container" style="padding-top:{{CustomBar}}px;">
  15. <view>
  16. <block wx:for="{{list}}" wx:key="{{index}}">
  17. <tui-cell tui-cell-class="tui-msg">
  18. <view class="tui-msg-box">
  19. <view class="tui-msg-item">
  20. <view class="tui-msg-content" style="font-size:28rpx;margin-top:18rpx">
  21. {{list[index].mark}}
  22. </view>
  23. <view class="tui-msg-content" style="font-size:28rpx;margin-top:7rpx">
  24. {{list[index].createTime}}</view>
  25. </view>
  26. </view>
  27. <view class="tui-msg-right">
  28. <view class="tui-msg-time" style="color:red;font-size:28rpx;font-weight:800;">{{list[index].number}}元</view>
  29. </view>
  30. </tui-cell>
  31. </block>
  32. </view>
  33. </view>
  34. <time-picker pickerShow="{{isPickerShow}}" id="picker" wx:if="{{isPickerRender}}" bind:hidePicker="pickerHide"
  35. bind:setPickerTime="setPickerTime" config="{{pickerConfig}}"></time-picker>
  36. </view>