index.wxml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <cu-custom isBack="{{true}}">
  2. <view slot="backText">返回</view>
  3. <view slot="content">需求大厅</view>
  4. </cu-custom>
  5. <scroll-view scroll-y class="scrollPage">
  6. <view class="tark-list" wx:for="{{list}}" wx:key="id" wx:for-index="index">
  7. <view class="cu-list menu-avatar">
  8. <view class="cu-item">
  9. <image src="/img/1.png" class="cu-avatar round lg"></image>
  10. <view class="content flex-sub">
  11. <view>{{item.product}}</view>
  12. <view class="text-gray text-sm flex justify-between">
  13. {{item.company}}
  14. </view>
  15. </view>
  16. </view>
  17. <!-- 任务详情 -->
  18. <view class="padding text-grey bg-white">
  19. <view class="text-cut">
  20. <view class="fl w100">任务编号 : </view>
  21. <text class="text-blue">{{item.id}}</text>
  22. </view>
  23. <view class="margin-top-sm">
  24. <view class="fl w100">交易金额 : </view>
  25. <text class="text-blue">¥{{item.fee/100}}元</text>
  26. </view>
  27. <view class="margin-top-sm">
  28. <view class="fl w100">任务类型 : </view>
  29. <text class="text-blue">{{item.type}}</text>
  30. </view>
  31. <view class="margin-top-sm">
  32. <view class="fl w100">关联公司 : </view>
  33. <text class="text-blue">{{item.target||'---'}}</text>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. <view wx:if="{{from==-1}}" class="flex-sub text-center">
  39. <view class="padding">没有更多了</view>
  40. <view class='cu-tabbar-height'></view>
  41. </view>
  42. <view class='cu-tabbar-height'></view>
  43. </scroll-view>
  44. <view class='cu-load load-modal' wx:if="{{loadModal}}">
  45. <view class='cuIcon-emojifill text-orange'></view>
  46. <view class='gray-text'>加载中...</view>
  47. </view>