index.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <cu-custom bgColor="bg-gradual-blue" isBack>
  2. <view slot="backText">返回</view>
  3. <view slot="content">{{title}}</view>
  4. </cu-custom>
  5. <view class="section">
  6. <view wx:for="{{value}}" wx:key="index" class="item margin-bottom-sm bg-white padding">
  7. <view class="type padding-bottom text-xl text-black">{{item.type}}</view>
  8. <view class="text-cut lheight text-lg">
  9. <text class="title">姓名</text>
  10. <text class=" text-grey">{{item.name}}</text>
  11. </view>
  12. <view class="text-cut lheight text-lg">
  13. <text class="title">手机号</text>
  14. <text class=" text-grey">{{item.tel}}</text>
  15. </view>
  16. <view class="text-cut lheight text-lg">
  17. <text class="title">贷款产品</text>
  18. <text class=" text-grey">{{item.laompany}}</text>
  19. </view>
  20. <view class="text-cut lheight text-lg">
  21. <text class="title">车型</text>
  22. <text class=" text-grey">{{item.vmodel}}</text>
  23. </view>
  24. <view class="text-cut lheight text-lg">
  25. <text class="title">车辆发票金额</text>
  26. <text class="text-grey text-price">{{item.invioce}}</text>
  27. </view>
  28. <view class="text-cut lheight text-lg">
  29. <text class="title">申请贷款金额</text>
  30. <text class="text-price text-grey">{{item.lamount}}</text>
  31. </view>
  32. <view class="btns">
  33. <button wx:for="{{btns}}" wx:if="{{item.type==type}}"
  34. class="cu-btn round bg-blue button-hover margin-left margin-top" wx:key="index">{{item.name}}</button>
  35. </view>
  36. </view>
  37. </view>