Feat:抽奖2.0(细节调整,查漏补缺)
This commit is contained in:
@@ -375,6 +375,7 @@
|
||||
<view
|
||||
v-if="order.isDrawOrder > 0"
|
||||
class="bnt service"
|
||||
@click.stop="callMerPhone(order)"
|
||||
>联系客服
|
||||
</view>
|
||||
<view>
|
||||
@@ -1055,6 +1056,19 @@ export default {
|
||||
force2Decimal(v) {
|
||||
return this.$force2Decimal(v)
|
||||
},
|
||||
callMerPhone(order) {
|
||||
const phone = String((order && order.merPhone) || '').trim()
|
||||
if (!phone) {
|
||||
uni.showToast({
|
||||
title: '暂无电话',
|
||||
icon: 'none'
|
||||
})
|
||||
return
|
||||
}
|
||||
uni.makePhoneCall({
|
||||
phoneNumber: phone
|
||||
})
|
||||
},
|
||||
goRoom(order) {
|
||||
console.log(order);
|
||||
if (order.experienceOrderInfo) {
|
||||
|
||||
Reference in New Issue
Block a user