|
|
|
@ -5,6 +5,7 @@ |
|
|
|
|
<view class="left-wrapper"> |
|
|
|
|
<view class="title">商城客服已离线</view> |
|
|
|
|
<view class="txt">尊敬的用户,客服当前不在线,有问题请留言,我们会第一时间进行处理!</view> |
|
|
|
|
<view class="txt" style="margin-top: 10rpx;">客服电话:<text @click="callPhone('15850793174')">15850793174</text></view> |
|
|
|
|
</view> |
|
|
|
|
<view class="img-box"> |
|
|
|
|
<image src="@/static/icon/feed-icon.png" mode=""></image> |
|
|
|
@ -62,7 +63,12 @@ export default { |
|
|
|
|
}).catch(function (res) { |
|
|
|
|
that.$util.showMsg(res.msg); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
callPhone(phone) { |
|
|
|
|
uni.makePhoneCall({ |
|
|
|
|
phoneNumber: phone, // 电话号码 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|