|
@@ -142,7 +142,7 @@
|
|
|
{{item.relation_name}}
|
|
{{item.relation_name}}
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
- <view class="row-c" v-if="verifyKey('phone',2)">
|
|
|
|
|
|
|
+ <view class="row-c" v-if="verifyKey('phone',2)" @click="makingCall(item.phone)">
|
|
|
<image class="wh-30 m-r10" src="/page_task/static/img/task-details/phone.png" mode=""></image>
|
|
<image class="wh-30 m-r10" src="/page_task/static/img/task-details/phone.png" mode=""></image>
|
|
|
<text class="size-26 text-color-333">{{item.phone}}</text>
|
|
<text class="size-26 text-color-333">{{item.phone}}</text>
|
|
|
</view>
|
|
</view>
|
|
@@ -154,6 +154,7 @@
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
import EnImage from "@/components/en-utils/en-image/en-image.vue"
|
|
import EnImage from "@/components/en-utils/en-image/en-image.vue"
|
|
|
|
|
+ import tools from "@/service/tools";
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
|
props: {
|
|
props: {
|
|
@@ -181,6 +182,9 @@
|
|
|
return {}
|
|
return {}
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
|
|
+ makingCall(phone){
|
|
|
|
|
+ tools.makingCall(phone)
|
|
|
|
|
+ },
|
|
|
onPreviewImage(url) {
|
|
onPreviewImage(url) {
|
|
|
console.log('url2:'+url)
|
|
console.log('url2:'+url)
|
|
|
this.$emit('onShowImg', url)
|
|
this.$emit('onShowImg', url)
|