|
|
@@ -90,7 +90,7 @@
|
|
|
</view>
|
|
|
<view class="row-c p-tb30" v-if="verifyKey('reply_type')">
|
|
|
<view class="text-color-666"><text></text>批复类型:</view>
|
|
|
- <text>{{applyItem.reply_type}}</text>
|
|
|
+ <text>{{applyItem.reply_type===1?'商业':'组合'}}</text>
|
|
|
</view>
|
|
|
<view class="row-c p-tb30" v-if="verifyKey('intermediary')">
|
|
|
<view class="text-color-666"><text></text>成交中介:</view>
|
|
|
@@ -102,7 +102,7 @@
|
|
|
<text class="size-28 sys-weight-600">绑定资产信息</text>
|
|
|
<view class="row-c p-tb30">
|
|
|
<view class="text-color-666"><text></text>绑定资产:</view>
|
|
|
- <text>绑定资产</text>
|
|
|
+ <text>{{getPropertyName(applyItem.property_sns)}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
@@ -110,7 +110,7 @@
|
|
|
<view v-for="(repaymentItem,repaymentIndex) in applyItem.repayment_data">
|
|
|
<text
|
|
|
class="size-28 sys-weight-600">{{applyItem.apply_type*1===1?'还款信息':'监管银行卡信息'}}</text>
|
|
|
- <view class="row-c p-tb30">
|
|
|
+ <view class="row-c p-tb30" v-if="applyItem.apply_type*1===1">
|
|
|
<view class="text-color-666"><text></text>还款金额:</view>
|
|
|
<text>{{repaymentItem.money}}万</text>
|
|
|
</view>
|
|
|
@@ -349,6 +349,16 @@
|
|
|
this.getTaskOptions()
|
|
|
},
|
|
|
methods: {
|
|
|
+ getPropertyName(property_sns){
|
|
|
+ let propertyNum=0
|
|
|
+ // let propertyName=''
|
|
|
+ for (const propertyNameKey in this.propertyList) {
|
|
|
+ if(property_sns.indexOf(this.propertyList[propertyNameKey].property_sn)>=0){
|
|
|
+ ++propertyNum
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return '资产数量('+propertyNum+')'
|
|
|
+ },
|
|
|
showBankItem(applyType, bankType) {
|
|
|
// applyType*=1
|
|
|
// if(applyType===1){
|