Browse Source

拨打电话

twt 1 year ago
parent
commit
111daca005
3 changed files with 16 additions and 5 deletions
  1. 1 1
      pages/rescue/rescueOrder.vue
  2. 13 2
      pages/rescue/rescueOrderDetail.vue
  3. 2 2
      utils/request.js

+ 1 - 1
pages/rescue/rescueOrder.vue

@@ -759,7 +759,7 @@
 		font-size: 24rpx;
 		padding-top: 16rpx;
 		height: 30rpx;
-		overflow: hidden;
+		/* overflow: hidden; */
 		text-overflow: ellipsis;
 		white-space: nowrap;
 	}

+ 13 - 2
pages/rescue/rescueOrderDetail.vue

@@ -81,7 +81,7 @@
 			</view>
 			<view class="informationLine">
 				<view class="informationTxt">救援联系人:</view>
-				<view class="informationNum">{{orderData.openShopHelpSheet.customerName}}/{{orderData.openShopHelpSheet.mobilePhone}}</view>
+				<view class="informationNum">{{orderData.openShopHelpSheet.customerName}}/ <span @click="callPhone(orderData.openShopHelpSheet.mobilePhone)">{{orderData.openShopHelpSheet.mobilePhone}}</span> </view>
 			</view>
 			
 			<view class="informationLine" >
@@ -107,7 +107,11 @@
 			</view>
 			<view class="informationLine">
 				<view class="informationTxt">下单人:</view>
-				<view class="informationNum" >{{orderData.openUser.nickName|| '未知'}} / {{orderData.openUser.mobilePhone}}</view>
+				<view class="informationNum" >{{orderData.openUser.nickName|| '未知'}} / <span @click="callPhone(orderData.openUser.mobilePhone)">{{orderData.openUser.mobilePhone}}</span> </view>
+			</view>
+			<view class="informationLine">
+				<view class="informationTxt">会员信息:</view>
+				<view class="informationNum" >{{orderData.openShopHelpSheet.cardName|| '暂无'}} <span v-if="orderData.openShopHelpSheet.cardName">/</span> {{orderData.openShopHelpSheet.cardCode}}</view>
 			</view>
 			<view class="informationLine" v-if="orderData.openShopHelpSheet.confirmTime">
 				<view class="informationTxt">确认时间:</view>
@@ -302,6 +306,13 @@
 		
 
 		methods: {
+			callPhone(Phone){
+				if(Phone){
+					uni.makePhoneCall({
+						phoneNumber: Phone
+					});
+				}
+			},
 			getpermission(){
 				this.$http('openH5ShopHelpSheetOrder/permission', {
 					 

+ 2 - 2
utils/request.js

@@ -1,5 +1,5 @@
 //测试地址
-const baseUrl = 'http://api.dms.66km.com.cn/'
+//const baseUrl = 'http://api.dms.66km.com.cn/'
 //const baseUrl = 'http://dms.66km.com.cn/'
 //const baseUrl = 'http://192.168.0.146:20187/'
 //const baseUrl = 'http://syadmin.66km.com/'
@@ -9,7 +9,7 @@ const baseUrl = 'http://api.dms.66km.com.cn/'
 //const baseUrl = 'https://crm.eurorepar.cn/'
 //安徒生
 //const baseUrl = 'http://dms-api.lhrhy.cn/'
-//const baseUrl = '//store-api.qdbtl.cn/'
+const baseUrl = '//store-api.qdbtl.cn/'
 import $store from '../store'
 
 const http = (url = '', date = {}, type = 'POST', header = {