index.wxml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <nav-bar navbar-data='{{nvabarData}}'></nav-bar>
  2. <view class="home">
  3. <view class="main">
  4. <view>
  5. <text>审核状态</text>
  6. <!-- <text>{{financeInfo.follow.creditStatus==3?'已拒绝':financeInfo.follow.creditStatus==0?'已接单':financeInfo.follow.creditStatus==1?'已放款':financeInfo.follow.creditStatus==2?'已审核':'已推送'}}</text> -->
  7. <text wx:if="{{!financeInfo.uuid}}">已推送</text>
  8. <text wx:if="{{financeInfo.uuid}}">{{financeInfo.follow.creditStatus==3?'已拒绝':financeInfo.follow.creditStatus==0?'已接单':financeInfo.follow.creditStatus==1?'已放款':financeInfo.follow.creditStatus==2?'已审核':'已推送'}}</text>
  9. </view>
  10. <view>
  11. <text class="company">企业名称</text>
  12. <text>{{financeInfo.company.company_name}}</text>
  13. </view>
  14. <view>
  15. <text>统一社会信用代码</text>
  16. <text>{{financeInfo.company.reg_num}}</text>
  17. </view>
  18. <view class="info">
  19. <span class="red"></span>
  20. 融资信息
  21. </view>
  22. <view>
  23. <text>银行名称</text>
  24. <text>{{financeInfo.institution.name}}</text>
  25. </view>
  26. <view>
  27. <text>融资产品</text>
  28. <text>{{financeInfo.finance_claims.name}}</text>
  29. </view>
  30. <view>
  31. <text>资金需求(万元)</text>
  32. <text>{{financeInfo.money}}</text>
  33. </view>
  34. <view>
  35. <text>融资方式</text>
  36. <text>{{financeInfo.dictionary.name}}</text>
  37. </view>
  38. <view class="info">
  39. <span class="red"></span>
  40. 客户经理信息
  41. </view>
  42. <view>
  43. <text>客户经理</text>
  44. <text>{{financeInfo.otherUser.name}}</text>
  45. </view>
  46. <view>
  47. <text>联系方式</text>
  48. <text style="color: #72ACE3;" bindtap="call" data-phone="{{financeInfo.otherUser.phone}}" >{{financeInfo.otherUser.phone}}</text>
  49. </view>
  50. <view class="info">
  51. <span class="red"></span>
  52. 放款信息
  53. </view>
  54. <view>
  55. <text>放款产品</text>
  56. <text>{{financeInfo.follow.sxcpname}}</text>
  57. </view>
  58. <view>
  59. <text>放款金额(万元)</text>
  60. <text>{{financeInfo.follow.credit_money}}</text>
  61. </view>
  62. <view>
  63. <text>放款期限(个月)</text>
  64. <text>{{financeInfo.follow.sxhowlong}}</text>
  65. </view>
  66. <view class="last">
  67. <text>放款利率(%)</text>
  68. <text>{{financeInfo.follow.sxcplilue}}</text>
  69. </view>
  70. <button class="btn-left" disabled>抵押登记</button>
  71. <button class="btn-right" disabled>申请担保</button>
  72. <!-- <view>
  73. <text>期望融资期限</text>
  74. <text>{{financeInfo.claims_min_term}}-{{financeInfo.claims_max_term}}月</text>
  75. </view>
  76. <view>
  77. <text>期望融资利率</text>
  78. <text>{{financeInfo.mongey_min_rate}}%-{{financeInfo.mongey_max_rate}}%</text>
  79. </view> -->
  80. <!-- <view>
  81. <text>希望获得融资支持</text>
  82. <text>{{financeInfo.rzzc}}</text>
  83. </view> -->
  84. <!-- <view>
  85. <text>预计何时有融资需求</text>
  86. <text>{{financeInfo.when.name}}</text>
  87. </view> -->
  88. <!-- <view>
  89. <text>金融机构留言</text>
  90. <text>{{financeInfo.follow.senhemessage}}</text>
  91. </view> -->
  92. </view>
  93. </view>