两个客户的收货地址、联系人或联系电话不相同,不能同时选择
 
	
	
	
	
	
	
	
	
	
	
	
	
	
 |  |  | 
 |  |  |                                 const obj = Object.assign({ | 
 |  |  |                                     label: i.customerName, | 
 |  |  |                                     value: i.customerName, | 
 |  |  |                                     shippingNoticeNo: i.shippingNoticeNo, | 
 |  |  |                   shippingNoticeNo: i.shippingNoticeNo, | 
 |  |  |                   receiverAddress: i.receiverAddress, | 
 |  |  |                   contactPerson: i.contactPerson, | 
 |  |  |                   contactPhone: i.contactPhone, | 
 |  |  |                                     id: i.id, | 
 |  |  |                                 }); | 
 |  |  |                                 this.selClientList.push(obj); | 
 |  |  | 
 |  |  |                 } | 
 |  |  |                 const selectedIndex = e.target.value; | 
 |  |  |                 const selectedCustomer = storage[selectedIndex]; | 
 |  |  |  | 
 |  |  |         console.log("selectedCustomer", selectedCustomer); | 
 |  |  |         console.log("selectedIndex", selectedIndex); | 
 |  |  |                 // 检查是否选择了相同的客户 | 
 |  |  |                 if (code === "customerName1" && this.selClientIndex2 === selectedIndex) { | 
 |  |  |                     uni.showToast({ |