优化私域引流订单显示

This commit is contained in:
gyq
2025-12-17 15:59:59 +08:00
parent 2fc5a428ff
commit 14d7f701ad

View File

@@ -6,7 +6,7 @@
<view class="content"> <view class="content">
<view class="title">{{ form.title }}</view> <view class="title">{{ form.title }}</view>
<view class="img_wrap"> <view class="img_wrap">
<image class="img" :src="form.qrCode"></image> <image class="img" :show-menu-by-longpress="true" :src="form.qrCode" @click=""></image>
</view> </view>
<view class="intro"> <view class="intro">
{{ form.content }} {{ form.content }}
@@ -114,7 +114,7 @@ function showHandle() {
case 'order': case 'order':
// 订单 只要包含用餐类型就显示 // 订单 只要包含用餐类型就显示
let shopMode = shopInfo.value.eatModel.split(','); let shopMode = shopInfo.value.eatModel.split(',');
if (checkArrayElementsExist(shopMode, form.value.orderType)) { if (checkArrayElementsExist(shopMode, form.value.orderType, true) && form.value.orderEnable) {
show.value = true; show.value = true;
} }
break; break;