抖音b端
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.

48 lines
1.5 KiB

  1. <image class='img' src='./../../static/images/bg.png' mode='widthFix'></image>
  2. <view class='head'>
  3. <image src='./../../static/images/reviveimg.png' mode='widthFix'></image>
  4. <view class='time'>
  5. <view>
  6. <text>开始日期</text>
  7. <picker mode="date" value="{{date}}" start="1970-01-01" end="{{endDate}}" bindchange="bindDateChange">
  8. <view class="picker">
  9. {{date}}
  10. </view>
  11. </picker>
  12. </view>
  13. <view>
  14. <text></text>
  15. <text>至</text>
  16. </view>
  17. <view>
  18. <text>结束日期</text>
  19. <picker mode="date" value="{{date2}}" start="1970-01-01" end="{{endDate}}" bindchange="bindDateChange2">
  20. <view class="picker">
  21. {{date2}}
  22. </view>
  23. </picker>
  24. </view>
  25. </view>
  26. </view>
  27. <button class='btn' hover-class='active' bindtap='search'>查询</button>
  28. <view class="contents">
  29. <view tt:for="{{list}}" tt:key="{{index}}">
  30. <view class='date-t'>{{item.dateR}}</view>
  31. <view class='content clearfix' tt:for="{{item.value}}" tt:for-item="item01" tt:key="{{index01}}">
  32. <view class='le'>
  33. <text>{{item01.name}}</text>
  34. <text>{{item01.createDate01}}</text>
  35. </view>
  36. <view class='fr'>
  37. <text>{{item01.creditNum>0?('+'+item01.creditNum):(item01.creditNum)}}</text>
  38. <text>{{'操作人:'+item01.operator}}</text>
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. <view class="loading" tt:if="{{loading}}">
  44. {{content}}
  45. </view>
  46. <view class='nocontent' tt:if="{{showNocontent}}">
  47. 暂无数据
  48. </view>