修复拨打电话号码不一致的问题

This commit is contained in:
weipengfei 2023-07-22 17:10:53 +08:00
parent 1e537be449
commit ef9510a2d1
2 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@
<view class="text">
<view class="name">{{item.name}}</view>
<view class="mobile">
<uni-icons type="phone" color="#999999FF"></uni-icons>联系人-<text @click="copyPhone('17685151643')">{{item.account}}</text>
<uni-icons type="phone" color="#999999FF"></uni-icons>联系人-<text @click="copyPhone(item.account)">{{item.account}}</text>
</view>
</view>
</view>
@ -51,7 +51,7 @@
<!-- <view class="top">
发消息
</view> -->
<view class="bottom" @click="callUp(17685151643)">
<view class="bottom" @click="callUp(item.account)">
拨打电话
</view>
</view>

View File

@ -37,7 +37,7 @@
<view class="text">
<view class="name">{{item.name}}</view>
<view class="mobile">
<uni-icons type="phone" color="#999999FF"></uni-icons>联系人-<text @click="copyPhone('17685151643')">{{item.account}}</text>
<uni-icons type="phone" color="#999999FF"></uni-icons>联系人-<text @click="copyPhone(item.account)">{{item.account}}</text>
</view>
</view>
</view>
@ -51,7 +51,7 @@
<!-- <view class="top">
发消息
</view> -->
<view class="bottom" @click="callUp(17685151643)">
<view class="bottom" @click="callUp(item.account)">
拨打电话
</view>
</view>