CRM_26-03-03#story#8210,调度app和司机app客户姓名调整
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
<div class="rightItem">{{ orderDetailInfo.driverPhone ? orderDetailInfo.driverPhone : ' '}}</div>
|
||||
</template>
|
||||
<div class="rightItem">{{ orderDetailInfo.contractSettleType?.label }}</div>
|
||||
<div class="rightItem">{{ orderDetailInfo.userName }}</div>
|
||||
<div class="rightItem">{{ maskName(orderDetailInfo.userName) }}</div>
|
||||
<div class="rightItem">{{ maskPhone(orderDetailInfo.userPhone) }}</div>
|
||||
<div class="rightItem">{{ orderDetailInfo.plateNumber }}</div>
|
||||
<!-- <div class="rightItem" >理想智动LXA6500SHEVM理想智动LXA6500SHEVM</div>-->
|
||||
@@ -266,6 +266,10 @@ export default {
|
||||
this.map.add(marker2);
|
||||
this.map.setFitView([marker,marker1,marker2])
|
||||
},
|
||||
maskName(name) {
|
||||
if (!name) return '';
|
||||
return name.slice(0, 1) + '*'.repeat(name.length - 1);
|
||||
},
|
||||
maskPhone(phone) {
|
||||
if (!phone) return '';
|
||||
const str = String(phone);
|
||||
|
||||
Reference in New Issue
Block a user