CRM_26-03-03#story#8210,调度app和司机app客户联系方式调整
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
</template>
|
||||
<div class="rightItem">{{ orderDetailInfo.contractSettleType?.label }}</div>
|
||||
<div class="rightItem">{{ orderDetailInfo.userName }}</div>
|
||||
<div class="rightItem">{{ orderDetailInfo.userPhone }}</div>
|
||||
<div class="rightItem">{{ maskPhone(orderDetailInfo.userPhone) }}</div>
|
||||
<div class="rightItem">{{ orderDetailInfo.plateNumber }}</div>
|
||||
<!-- <div class="rightItem" >理想智动LXA6500SHEVM理想智动LXA6500SHEVM</div>-->
|
||||
<div class="rightItem" >{{orderDetailInfo.model}}{{ orderDetailInfo.brand }}</div>
|
||||
@@ -266,6 +266,12 @@ export default {
|
||||
this.map.add(marker2);
|
||||
this.map.setFitView([marker,marker1,marker2])
|
||||
},
|
||||
maskPhone(phone) {
|
||||
if (!phone) return '';
|
||||
const str = String(phone);
|
||||
if (str.length <= 7) return str;
|
||||
return str.slice(0, 3) + '*'.repeat(str.length - 7) + str.slice(-4);
|
||||
},
|
||||
async getDriverPoi(){
|
||||
let res=await showVehiclePositionInfo({
|
||||
userOrderId:this.userOrderId,
|
||||
|
||||
Reference in New Issue
Block a user