index.wxml 1.9 KB

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