1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <nav-bar navbar-data='{{nvabarData}}'></nav-bar>
- <view class="home">
- <view class="main">
- <view>
- <text>审核状态</text>
- <!-- <text>{{financeInfo.follow.creditStatus==3?'已拒绝':financeInfo.follow.creditStatus==0?'已接单':financeInfo.follow.creditStatus==1?'已放款':financeInfo.follow.creditStatus==2?'已审核':'已推送'}}</text> -->
- <text wx:if="{{!financeInfo.uuid}}">已推送</text>
- <text wx:if="{{financeInfo.uuid}}">{{financeInfo.follow.creditStatus==3?'已拒绝':financeInfo.follow.creditStatus==0?'已接单':financeInfo.follow.creditStatus==1?'已放款':financeInfo.follow.creditStatus==2?'已审核':'已推送'}}</text>
- </view>
- <view>
- <text class="company">企业名称</text>
- <text>{{financeInfo.company.company_name}}</text>
- </view>
- <view>
- <text>统一社会信用代码</text>
- <text>{{financeInfo.company.reg_num}}</text>
- </view>
- <view class="info">
- <span class="red"></span>
- 融资信息
- </view>
- <view>
- <text>银行名称</text>
- <text>{{financeInfo.institution.name}}</text>
- </view>
- <view>
- <text>融资产品</text>
- <text>{{financeInfo.finance_claims.name}}</text>
- </view>
- <view>
- <text>资金需求(万元)</text>
- <text>{{financeInfo.money}}</text>
- </view>
- <view>
- <text>融资方式</text>
- <text>{{financeInfo.dictionary.name}}</text>
- </view>
- <view class="info">
- <span class="red"></span>
- 客户经理信息
- </view>
- <view>
- <text>客户经理</text>
- <text>{{financeInfo.otherUser.name}}</text>
- </view>
- <view>
- <text>联系方式</text>
- <text style="color: #72ACE3;" bindtap="call" data-phone="{{financeInfo.otherUser.phone}}" >{{financeInfo.otherUser.phone}}</text>
- </view>
- <view class="info">
- <span class="red"></span>
- 放款信息
- </view>
- <view>
- <text>放款产品</text>
- <text>{{financeInfo.follow.sxcpname}}</text>
- </view>
- <view>
- <text>放款金额(万元)</text>
- <text>{{financeInfo.follow.credit_money}}</text>
- </view>
- <view>
- <text>放款期限(个月)</text>
- <text>{{financeInfo.follow.sxhowlong}}</text>
- </view>
- <view class="last">
- <text>放款利率(%)</text>
- <text>{{financeInfo.follow.sxcplilue}}</text>
- </view>
- <button class="btn-left" disabled>抵押登记</button>
- <button class="btn-right" disabled>申请担保</button>
- <!-- <view>
- <text>期望融资期限</text>
- <text>{{financeInfo.claims_min_term}}-{{financeInfo.claims_max_term}}月</text>
- </view>
- <view>
- <text>期望融资利率</text>
- <text>{{financeInfo.mongey_min_rate}}%-{{financeInfo.mongey_max_rate}}%</text>
- </view> -->
- <!-- <view>
- <text>希望获得融资支持</text>
- <text>{{financeInfo.rzzc}}</text>
- </view> -->
- <!-- <view>
- <text>预计何时有融资需求</text>
- <text>{{financeInfo.when.name}}</text>
- </view> -->
- <!-- <view>
- <text>金融机构留言</text>
- <text>{{financeInfo.follow.senhemessage}}</text>
- </view> -->
- </view>
- </view>
|