shish 2 лет назад
Родитель
Сommit
0410a71a1e

+ 2 - 2
hdApp/src/admin/billing/affirmGhs.vue

@@ -4,8 +4,8 @@
 			<form>
 				<view class="module-com">
 					<view class="flex-space ghs-msg">
-						{{ghsInfo.name}} {{ ghsInfo.mobile }}
-						<i class="iconfont icondianhua1" @tap="toPhone(ghsInfo.mobile)"></i>
+						{{ghsInfo.name}} {{ ghsInfo.telephone }}
+						<i class="iconfont icondianhua1" @tap="toPhone(ghsInfo.telephone)"></i>
 					</view>
 					<view class="flex ghs-msg active">
 						{{ ghsInfo.fullAddress }}

+ 2 - 2
hdApp/src/admin/billing/affirmGhsBook.vue

@@ -4,8 +4,8 @@
 			<form>
 				<view class="module-com">
 					<view class="flex-space ghs-msg">
-						{{ghsInfo.name}} {{ ghsInfo.mobile }}
-						<i class="iconfont icondianhua1" @tap="toPhone(ghsInfo.mobile)"></i>
+						{{ghsInfo.name}} {{ ghsInfo.telephone }}
+						<i class="iconfont icondianhua1" @tap="toPhone(ghsInfo.telephone)"></i>
 					</view>
 					<view class="flex ghs-msg active">
 						{{ ghsInfo.fullAddress }}

+ 4 - 2
hdApp/src/pagesPurchase/purDetails.vue

@@ -6,11 +6,11 @@
       </view>
       <view class="address-des_bx content-box" @click="goToSettle(detailInfo)">
         <view>
-          <view> {{ detailInfo.ghsName }} {{ detailInfo.ghsMobile }} </view>
+          <view> {{ detailInfo.ghsName }} {{ ghsInfo.telephone }} </view>
           <view>{{ detailInfo.ghsFullAddress}}</view>
         </view>
         <view>
-          <i @click.stop="callUp(detailInfo.ghsMobile)" class="iconfont icondianhua1"></i>
+          <i @click.stop="callUp(ghsInfo.telephone)" class="iconfont icondianhua1"></i>
         	<i @click.stop="navigate(detailInfo.lat,detailInfo.long,detailInfo.supplierName)"
           class="iconfont icondianhua" style="font-size:53upx;margin-left:50upx;margin-right:9upx;color:#3385ff;"></i>
         </view>
@@ -300,6 +300,7 @@ export default {
       form: {
         name: ""
       },
+      ghsInfo:{},
       detailInfo: {
         ghsShopAdminId:0,
         status:0,
@@ -447,6 +448,7 @@ export default {
         let ghsId = res.data.ghsId ? res.data.ghsId : 0
         getGhsDataApi({id: ghsId}).then(res => {
           if(res.code == 1){
+            that.ghsInfo = res.data
             that.afterSale = res.data.afterSale
           }
         })