From 6e0b38b0ea6669d532e9d2279a81ca3963e0f3ad Mon Sep 17 00:00:00 2001
From: liyaozhi <lzhflash@163.com>
Date: Thu, 13 Nov 2025 00:14:05 +0800
Subject: [PATCH] 1、小程序端列出所有报名人员名单(含姓名); 2、优化活动促销商品; 3、优化小程序端活动详情页; 4、优化后台连盟活动修改页面,并展示促销商品; 5、参与活动人员积分设置改到职务里添加。
---
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