From 69110c094343fa111eee75b0a56fef7dd7995f8a Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Tue, 25 Nov 2025 18:09:45 +0800
Subject: [PATCH] 修复优惠券点击立即使用弹出二维码问题 商家后台添加分销和超级分红 添加活动分享功能 添加商户提现功能
---
mobile/pages/plus/lottery/lottery.vue | 17 ++++-------------
1 files changed, 4 insertions(+), 13 deletions(-)
diff --git a/mobile/pages/plus/lottery/lottery.vue b/mobile/pages/plus/lottery/lottery.vue
index 5ef8b32..5236688 100644
--- a/mobile/pages/plus/lottery/lottery.vue
+++ b/mobile/pages/plus/lottery/lottery.vue
@@ -10,17 +10,10 @@
<view class="tc mt20 f28" style="color: #A62A2A;">每次抽奖消耗 {{ points }} {{ points_name() }},今日剩余{{ times }}次</view>
</view>
<view class="lottery-title">
- <almost-lottery
- :prizeList="prizeList"
- :prizeIndex="prizeIndex"
- :lotteryBg="'/uni_modules/almost-lottery/static/almost-lottery/almost-lottery__bg.png'"
- :actionBg="'/uni_modules/almost-lottery/static/almost-lottery/almost-lottery__action.png'"
- @reset-index="prizeIndex = -1"
- @draw-start="handleDrawStart"
- @draw-end="handleDrawEnd"
- @finish="handleDrawFinish"
- v-if="prizeList.length"
- />
+ <!-- 组件暂不可用 -->
+ <view class="tc p40" v-if="prizeList.length">
+ <text class="gray9">抽奖组件暂不可用</text>
+ </view>
</view>
</view>
<view class="ww100 mt30"><button class="btn-red record" @click="getRecord()">中奖记录</button></view>
@@ -92,11 +85,9 @@
<script>
import popup from '@/components/uni-popup.vue';
- import AlmostLottery from '@/uni_modules/almost-lottery/components/almost-lottery/almost-lottery.vue';
import uniLoadMore from "@/components/uni-load-more.vue";
export default {
components: {
- AlmostLottery,
popup,
uniLoadMore
},
--
Gitblit v1.9.2