twt 1 year ago
parent
commit
de631f8ce1
2 changed files with 14 additions and 4 deletions
  1. 2 2
      pages/index/index.vue
  2. 12 2
      pages/rescue/rescueOrderDetail.vue

+ 2 - 2
pages/index/index.vue

@@ -3,7 +3,7 @@
 		<view @click="getAndroid">安卓测试</view>
 		{{androidData}}
 		<view @click="gojkorder">集客订单</view>
-		<view>救援订单</view>
+		<view>救援订单1</view>
 	</view>
 </template>
 
@@ -18,7 +18,7 @@
 		onLoad() {
           window.getAndroid=this.getAndroid;
 		//  setTimeout( this.getAndroid(),500)
-		  
+		 // alert(11)
 		 
 		 // this.callByAndroid()
 		 // window.LoginOut=this.LoginOut

+ 12 - 2
pages/rescue/rescueOrderDetail.vue

@@ -81,7 +81,7 @@
 			</view>
 			<view class="informationLine">
 				<view class="informationTxt">救援联系人:</view>
-				<view class="informationNum">{{orderData.openShopHelpSheet.customerName}}/ <span @click="callPhone(orderData.openShopHelpSheet.mobilePhone)">{{orderData.openShopHelpSheet.mobilePhone}}</span> </view>
+				<view class="informationNum">{{orderData.openShopHelpSheet.customerName}}/{{orderData.openShopHelpSheet.mobilePhone}} <span class="callPhone" @click="callPhone(orderData.openShopHelpSheet.mobilePhone)">拨号</span> </view>
 			</view>
 			
 			<view class="informationLine" >
@@ -107,7 +107,7 @@
 			</view>
 			<view class="informationLine">
 				<view class="informationTxt">下单人:</view>
-				<view class="informationNum" >{{orderData.openUser.nickName|| '未知'}} / <span @click="callPhone(orderData.openUser.mobilePhone)">{{orderData.openUser.mobilePhone}}</span> </view>
+				<view class="informationNum" >{{orderData.openUser.nickName|| '未知'}} / {{orderData.openUser.mobilePhone}}<span class="callPhone" @click="callPhone(orderData.openUser.mobilePhone)">拨号</span> </view>
 			</view>
 			<!-- <view class="informationLine">
 				<view class="informationTxt">会员信息:</view>
@@ -1521,4 +1521,14 @@
 	.detailedLineBox{
 		padding-bottom: 10rpx;
 	}
+	.callPhone{
+		font-weight: 400;font-size: 24rpx;
+		color: #F03B3B;
+		border-radius: 8rpx;
+		border: 1px solid #F03B3B;
+		height: 38rpx;
+		line-height: 38rpx;
+		padding:2rpx 12rpx;
+		margin-left: 10rpx;
+	}
 </style>