DESKTOP-70VPDLK\Administrator 1 an în urmă
părinte
comite
78420ec926

+ 2 - 1
components/en-from/en-radio/en-radio.vue

@@ -57,6 +57,7 @@
 				if (this.disabled) {
 					return
 				}
+        this.$emit('updateData')
 				this.radioValue = value
 				this.$emit('input', value)
 			}
@@ -91,4 +92,4 @@
 		color: #0FB160;
 		border: 1rpx solid #0FB160;
 	}
-</style>
+</style>

+ 13 - 3
page_task/apply/apply.vue

@@ -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){

+ 4 - 4
page_task/apply/components/property-select.vue

@@ -306,7 +306,7 @@
 			}
 
 			.row-three {
-				background: #3169FA;
+				background:#219653;
 			}
 
 			.checked-row {
@@ -317,7 +317,7 @@
 						display: block;
 
 						.iconfont {
-							color: #3169FA;
+							color: #219653;
 							font-size: 42rpx;
 						}
 					}
@@ -332,8 +332,8 @@
 				font-size: 32rpx;
 				color: #fff;
 				text-align: center;
-				background: #3169FA;
+				background: #219653;
 			}
 		}
 	}
-</style>
+</style>

+ 2 - 2
page_task/tripartite_info/tripartite_info.vue

@@ -79,7 +79,7 @@
 				<view v-else>
 
 					<en-radio label="担保类型" v-model="tripartite.type" @updateData="farming(index)"
-						:list="appliesData"></en-radio>
+						:list="appliesData" ></en-radio>
 					<view v-if="tripartite.type*1===1">
 						<add-identity v-if="verifyKey('id_number')" :user-name.sync="tripartite.name"
 							:id-number.sync="tripartite.id_number" :identity-one.sync="tripartite.identity_one"
@@ -330,4 +330,4 @@
 		text-align: right;
 		direction: rtl;
 	}
-</style>
+</style>