Fix:5283 【商城小程序】待收货状态订单,将订单详情页“联系商家”按钮改为“联系客服”,并跳转至拨号页面

This commit is contained in:
LinCyJang
2026-05-14 23:32:11 +08:00
parent 71d9a8907b
commit 45b98c7bf1
+3 -3
View File
@@ -211,7 +211,7 @@
<view class="v12-font-28 v12-dark-text v12-font-bold more-t"> <view class="v12-font-28 v12-dark-text v12-font-bold more-t">
{{ cart.productInfo.storeName }} {{ cart.productInfo.storeName }}
</view> </view>
<view v-if="cart.productInfo.attrInfo" class="more-t v12-secondary-dark-text v12-font-24"> <view v-if="cart.productInfo.attrInfo && orderInfo.isDrawOrder !== 1" class="more-t v12-secondary-dark-text v12-font-24">
{{ cart.productInfo.attrInfo.sku || '' }} {{ cart.productInfo.attrInfo.sku || '' }}
</view> </view>
<view v-if="orderInfo.isDrawOrder === 1" class="more-t v12-secondary-dark-text v12-font-24"> <view v-if="orderInfo.isDrawOrder === 1" class="more-t v12-secondary-dark-text v12-font-24">
@@ -511,7 +511,7 @@
</template> </template>
<template v-if="status.type == 2"> <template v-if="status.type == 2">
<view class="v12-justify-between " style="width: 100%"> <view class="v12-justify-between " style="width: 100%">
<view v-if="orderInfo.isGiftCardReceiveBlind === 0" class="bnt v12-dark-text v12-dark-border cancel" @click="goRoom(orderInfo)">联系商家</view> <view v-if="orderInfo.isGiftCardReceiveBlind === 0" class="bnt v12-dark-text v12-dark-border cancel" @click.stop="callMerPhone">联系客服</view>
<view class="" v-else></view> <view class="" v-else></view>
<view class="v12-justify-between"> <view class="v12-justify-between">
<view class="btn-more" style="position: relative"> <view class="btn-more" style="position: relative">
@@ -984,7 +984,7 @@ export default {
const phone = String((this.orderInfo && this.orderInfo.merPhone) || '').trim() const phone = String((this.orderInfo && this.orderInfo.merPhone) || '').trim()
if (!phone) { if (!phone) {
uni.showToast({ uni.showToast({
title: '暂无商家电话', title: '暂无客服电话',
icon: 'none' icon: 'none'
}) })
return return