index.wxml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <cu-custom isBack="{{true}}">
  2. <view slot="backText">返回</view>
  3. <view slot="content">供应大厅</view>
  4. </cu-custom>
  5. <!-- <view class="cu-bar bg-white search fixed" style="top:{{CustomBar}}px;">
  6. <view class="search-form round">
  7. <text class="cuIcon-search"></text>
  8. <input type="text" placeholder="输入搜索的关键词" confirm-type="search"></input>
  9. </view>
  10. <view class="action">
  11. <button class="cu-btn bg-gradual-green shadow-blur round">搜索</button>
  12. </view>
  13. </view> -->
  14. <scroll-view scroll-y class="scrollPage" style="top:{{CustomBar}}px;">
  15. <view class="tark-list" wx:for="{{list}}" wx:key="id" wx:for-index="index">
  16. <view class="cu-list menu-avatar">
  17. <view class="cu-item">
  18. <view class="cu-avatar round lg">供</view>
  19. <view class="content flex-sub">
  20. <view>{{item.product}}</view>
  21. <view class="text-gray text-sm flex justify-between">
  22. 企业:{{item.company}}
  23. </view>
  24. </view>
  25. </view>
  26. <!-- 任务详情 -->
  27. <view class="padding text-grey bg-white">
  28. <view class="text-cut">
  29. <view class="fl w100">供应编号: </view>
  30. <text class="text-blue">{{item.id}}</text>
  31. </view>
  32. <view class="margin-top-sm">
  33. <view class="fl w100">产品单价: </view>
  34. <text class="text-blue"> {{item.unit_fee}} {{item.unit_fee=='面议'?'':('元/'+item.unit)}}
  35. </text>
  36. </view>
  37. <view class="margin-top-sm">
  38. <view class="fl w100">产品数量: </view>
  39. <text class="text-blue">{{item.amount}}{{item.unit}} </text>
  40. </view>
  41. <view class="margin-top-sm">
  42. <view class="fl w100">联 系 人: </view>
  43. <text class="text-blue">{{item.contact}}</text>
  44. </view>
  45. <view class="margin-top-sm">
  46. <view class="fl w100">联系电话 : </view>
  47. <text class="text-blue">{{item.phone}}</text>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. <view wx:if="{{from==-1}}" class="flex-sub text-center">
  53. <view class="padding">没有更多了</view>
  54. <view class='cu-tabbar-height'></view>
  55. </view>
  56. <view class='cu-tabbar-height'></view>
  57. </scroll-view>
  58. <view class='cu-load load-modal' wx:if="{{loadModal}}">
  59. <view class='cuIcon-emojifill text-orange'></view>
  60. <view class='gray-text'>加载中...</view>
  61. </view>