|
|
@@ -1,27 +1,24 @@
|
|
|
<template>
|
|
|
<view class="app-content">
|
|
|
-
|
|
|
<view v-if="!$util.isEmpty(detailInfo)" class="info-content_box">
|
|
|
- <view class="flex-space title" style="position: relative;">
|
|
|
+ <view class="flex-space title">
|
|
|
客户
|
|
|
- <button class="admin-button-com bule" @click.stop="copyCustom(detailInfo)"
|
|
|
- style="width:170upx;height:70upx;line-height:50upx;position: absolute;right:4upx;">复制地址</button>
|
|
|
</view>
|
|
|
<view class="address-des_bx content-box">
|
|
|
<view @click.stop="goCustom(detailInfo)">
|
|
|
<view style="overflow:hidden;text-overflow:ellipsis;white-space: nowrap;width:450upx;"> {{ detailInfo.customName }} {{ detailInfo.customMobile }}</view>
|
|
|
<view style="margin-bottom:20upx;color:#333333">店长 {{ detailInfo.customSuper.name||''}}</view>
|
|
|
- <view>
|
|
|
- {{ detailInfo.customAddress}}
|
|
|
- <block v-if="!$util.isEmpty(detailInfo.showAddress) && detailInfo.showAddress != detailInfo.customAddress">({{detailInfo.showAddress}})</block>
|
|
|
- </view>
|
|
|
+ <view style="margin-bottom:15upx;color:black;">{{ detailInfo.customAddress}}</view>
|
|
|
+ <view v-if="!$util.isEmpty(detailInfo.showAddress) && detailInfo.showAddress != detailInfo.customAddress" style="color:#656363;">{{detailInfo.showAddress}}</view>
|
|
|
</view>
|
|
|
- <view>
|
|
|
- <i @click.stop="callUp(detailInfo.customMobile)" class="iconfont icondianhua1"></i>
|
|
|
- <i @click.stop="navigateTo(detailInfo.lat,detailInfo.long,detailInfo.customName)" class="iconfont icondianhua" style="font-size:53upx;margin-left:40upx;margin-right:25upx;color:#3385ff;"></i>
|
|
|
+ <view class="right-btns">
|
|
|
+ <view class="icon-btns">
|
|
|
+ <i @click.stop="callUp(detailInfo.customMobile)" class="iconfont icondianhua1"></i>
|
|
|
+ <i @click.stop="navigateTo(detailInfo.lat,detailInfo.long,detailInfo.customName)" class="iconfont icondianhua"></i>
|
|
|
+ </view>
|
|
|
+ <button class="admin-button-com bule copy-address" @click.stop="copyCustom(detailInfo)">复制地址</button>
|
|
|
</view>
|
|
|
</view>
|
|
|
-
|
|
|
<view class="flex-space title">
|
|
|
单据信息
|
|
|
<view class="flex" style="color: #3385ff;font-weight: 400">
|
|
|
@@ -1223,6 +1220,7 @@ export default {
|
|
|
padding: 30upx 3upx;
|
|
|
}
|
|
|
& .address-des_bx {
|
|
|
+ position: relative;
|
|
|
display: flex;
|
|
|
padding: 20upx 10upx 30upx 20upx;
|
|
|
& > view:nth-child(1) {
|
|
|
@@ -1240,12 +1238,30 @@ export default {
|
|
|
margin-top: 20upx;
|
|
|
}
|
|
|
}
|
|
|
- & > view:nth-child(2) {
|
|
|
+ & .right-btns {
|
|
|
+ position: absolute;
|
|
|
+ top: 20upx;
|
|
|
+ right: 20upx;
|
|
|
display: flex;
|
|
|
- & .icondianhua1 {
|
|
|
- font-size: 50upx;
|
|
|
- color: #3385ff;
|
|
|
- margin-left: 0upx;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: flex-end;
|
|
|
+
|
|
|
+ .icon-btns {
|
|
|
+ display: flex;
|
|
|
+ margin-bottom: 15upx;
|
|
|
+
|
|
|
+ & .icondianhua1 {
|
|
|
+ font-size: 50upx;
|
|
|
+ color: #3385ff;
|
|
|
+ margin-left: 0upx;
|
|
|
+ }
|
|
|
+ & .icondianhua{
|
|
|
+ font-size:53upx;
|
|
|
+ color:#3385ff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .copy-address{
|
|
|
+ margin:0 auto;
|
|
|
}
|
|
|
}
|
|
|
}
|