index.wxml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. <view class="cu-avatar round lg">需</view>
  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.unit_fee}} {{item.unit_fee=='面议'?'':('元/'+item.unit)}}
  26. </text>
  27. </view>
  28. <view class="margin-top-sm">
  29. <view class="fl w100">产品数量 : </view>
  30. <text class="text-blue">{{item.amount}}{{item.unit}} </text>
  31. </view>
  32. <view class="margin-top-sm">
  33. <view class="fl w100"> 联 系 人 : </view>
  34. <text class="text-blue">{{item.contact}}</text>
  35. </view>
  36. <view class="margin-top-sm">
  37. <view class="fl w100">联系电话 : </view>
  38. <text class="text-blue">{{item.phone}}</text>
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. <view wx:if="{{from==-1}}" class="flex-sub text-center">
  44. <view class="padding">没有更多了</view>
  45. <view class='cu-tabbar-height'></view>
  46. </view>
  47. <view class='cu-tabbar-height'></view>
  48. </scroll-view>
  49. <view class='cu-load load-modal' wx:if="{{loadModal}}">
  50. <view class='cuIcon-emojifill text-orange'></view>
  51. <view class='gray-text'>加载中...</view>
  52. </view>