This commit is contained in:
cun-nan 2024-10-17 11:27:25 +08:00
parent 3996c44056
commit 37c9eb40ce
4 changed files with 78 additions and 60 deletions

View File

@ -243,6 +243,11 @@ export default {
}, },
methods: { methods: {
updateMax(item) { updateMax(item) {
this.cardCouponList.forEach(item1 => {
if (item.vouchersId==item1.id){
item.giftCardName = item1.name
}
})
// //
item.giftCardTotal = 1; item.giftCardTotal = 1;
// //

View File

@ -4,33 +4,24 @@
<view class="box-hang"> <view class="box-hang">
<view class="dis">活动名称</view> <view class="dis">活动名称</view>
<view class=""> <view class="">
<text>{{activeInfo.name}}</text> <text>{{activeInfo.activeName}}</text>
</view> </view>
</view> </view>
<view class="box-hang"> <view class="box-hang">
<view class="dis">活动时间</view> <view class="dis">活动时间</view>
<view class=""> <view class="">
<text>长期有效</text> <text>{{activeInfo.activeStartTime || '--'}}~{{activeInfo.activeEndTime || ""}}</text>
</view> </view>
</view> </view>
<view class="box-hang"> <view v-if="activeInfo.couponList">
<view class="dis">推荐人等级</view> <view class="box-hang" v-for="(item,index) in activeInfo.couponList" :key="index">
<view class="">
<text>{{activeInfo.userGradeName}}</text>
</view>
</view>
<view class="box-hang">
<view class="dis">支付方式</view>
<view class="">
<text>微信支付宝云闪付现金pos刷卡</text>
</view>
</view>
<view class="box-hang">
<view class="dis">赠送优惠券</view> <view class="dis">赠送优惠券</view>
<view class=""> <view class="">
<text>50元优惠券</text> <text>{{item.giftCardName || "--"}}</text>
</view> </view>
</view> </view>
</view>
<view class="box-hang"> <view class="box-hang">
<view class="dis">赠送积分</view> <view class="dis">赠送积分</view>
<view class=""> <view class="">
@ -43,6 +34,12 @@
<text>{{activeInfo.growaValue || 0}}成长值</text> <text>{{activeInfo.growaValue || 0}}成长值</text>
</view> </view>
</view> </view>
<view class="box-hang">
<view class="dis">活动详情</view>
<view class="">
<text>{{activeInfo.activityDetails || "--"}}</text>
</view>
</view>
</view> </view>
</view> </view>
</template> </template>

View File

@ -19,9 +19,9 @@
<view class="min-size">奖励记录</view> <view class="min-size">奖励记录</view>
</view> </view>
</view> </view>
<view class="or-aniu"> <button class="or-aniu" open-type="share">
立即分享 立即分享
</view> </button>
</view> </view>
<view class="h_bs"> <view class="h_bs">
<view class="title_">推荐会员消费有礼</view> <view class="title_">推荐会员消费有礼</view>
@ -33,7 +33,7 @@
<view v-if="activeInfo.couponList"> <view v-if="activeInfo.couponList">
<view class="si_" v-for="(item,index) in activeInfo.couponList" :key="index"> <view class="si_" v-for="(item,index) in activeInfo.couponList" :key="index">
<view class="">赠送优惠券</view> <view class="">赠送优惠券</view>
<view class="">{{item.giftCardName}}</view> <view class="">{{item.giftCardName || "--"}}</view>
</view> </view>
</view> </view>
@ -44,7 +44,7 @@
<view class="backf"> <view class="backf">
<view class="n_hang"> <view class="n_hang">
<view class="">特权说明</view> <view class="">特权说明</view>
<view class="">{{activeInfo.discountActiveDescribe}}</view> <view class="">加油立享优惠</view>
</view> </view>
<view class="n_hang"> <view class="n_hang">
<view class="">有效期</view> <view class="">有效期</view>
@ -74,10 +74,11 @@
<view class="title_or">扫码领会员</view> <view class="title_or">扫码领会员</view>
<view class="d-s"> <view class="d-s">
<view class="touxiang"> <view class="touxiang">
<image src="../../static/logo.png" mode=""></image> <image v-if="!store.logo" src="../../static/logo.png" mode=""></image>
<image v-else :src="baseUrl+store.logo" mode=""></image>
</view> </view>
<view class=""> <view class="">
<view class="tiitle_">百业兴加油站</view> <view class="tiitle_">{{store.name}}</view>
<view class="size_">油站会员卡</view> <view class="size_">油站会员卡</view>
</view> </view>
</view> </view>
@ -129,6 +130,7 @@
export default { export default {
data() { data() {
return { return {
titles:"",
query: { query: {
storeId: '' storeId: ''
}, },
@ -154,6 +156,8 @@
lon: "", lon: "",
// //
lat: "", lat: "",
// url
baseUrl: this.$baseUrl,
// //
store: { store: {
name: "测试油站", name: "测试油站",
@ -168,6 +172,13 @@
// '&userId=' + uni.getStorageSync('userId') + '&type=yaoqingyouli' // '&userId=' + uni.getStorageSync('userId') + '&type=yaoqingyouli'
// console.log(codes); // console.log(codes);
// this.query.storeId = uni.getStorageSync("storeId"); // this.query.storeId = uni.getStorageSync("storeId");
// #ifdef MP-WEIXIN
wx.showShareMenu({
withShareTicket: true,
//Menus
menus: ["shareAppMessage", "shareTimeline"]
})
// #endif
}, },
onShow() { onShow() {
this.getAllAmount(); this.getAllAmount();
@ -205,7 +216,7 @@
wx.onShareAppMessage(function() { wx.onShareAppMessage(function() {
return { return {
title: '来个油惠', title: '矩油惠 百业兴',
path: '/pages/index/index', path: '/pages/index/index',
imageUrl: 'https://example.com/share.jpg', imageUrl: 'https://example.com/share.jpg',
success: function(res) { success: function(res) {
@ -219,10 +230,11 @@
}, },
onShareAppMessage(res) { onShareAppMessage(res) {
if (res.from === 'button') { // if (res.from === 'button') { //
console.log(res.target) console.log(res.target,233)
} }
return { return {
title: '来个油惠', title: '矩油惠 百业兴',
path: '/pages/index/index?storeId=' + uni.getStorageSync('storeId') + '&userId=' + uni path: '/pages/index/index?storeId=' + uni.getStorageSync('storeId') + '&userId=' + uni
.getStorageSync('userId') + '&type=yaoqingyouli' .getStorageSync('userId') + '&type=yaoqingyouli'
} }
@ -252,9 +264,10 @@
// //
savePicture() { savePicture() {
console.log(230); console.log(230);
let url = this.options.code;
// //
uni.downloadFile({ uni.downloadFile({
url: 'https://www.example.com/file/test', // url: url,
success: (res) => { success: (res) => {
if (res.statusCode === 200) { if (res.statusCode === 200) {
console.log('下载成功'); console.log('下载成功');

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="content"> <view class="content">
<view class="container"> <view class="container">
<view class="top_box"> <!-- <view class="top_box">
<view class="two_t"> <view class="two_t">
<view class="">浏览人数</view> <view class="">浏览人数</view>
<view class="size_">50</view> <view class="size_">50</view>
@ -10,7 +10,7 @@
<view class="">注册人数</view> <view class="">注册人数</view>
<view class="size_">50</view> <view class="size_">50</view>
</view> </view>
</view> </view> -->
<view class="tab_"> <view class="tab_">
<view class="t-box" :class="{'orsize' : tindex == index }" v-for="(item,index) in tabList" :key="index" <view class="t-box" :class="{'orsize' : tindex == index }" v-for="(item,index) in tabList" :key="index"
@click="setIndex(index)">{{item.name}}</view> @click="setIndex(index)">{{item.name}}</view>
@ -22,16 +22,24 @@
</view> </view>
</view> </view>
<view class="whit-box" v-else> <view class="whit-box" v-else>
<view class="one_h" v-for="(item,index) in 4" :key="index"> <view class="one_h" v-for="(item,index) in list" :key="index">
<view class="d-s"> <view class="d-s">
<view class="touxiang"> <view class="touxiang">
<image src="../../static/logo.png" mode=""></image> <image src="../../static/logo.png" mode=""></image>
</view> </view>
<view class="">名字</view> <view class="">{{item.inviteeUserName || "--"}}</view>
</view> </view>
<view class="">2024-8-7</view> <view class="">{{item.createTime}}</view>
</view> </view>
</view> </view>
<view v-if="tindex == 1 && rewardList.length==0">
<u-empty mode="list" icon="http://cdn.uviewui.com/uview/empty/list.png">
</u-empty>
</view>
<view v-if="tindex != 1 && list.length==0">
<u-empty mode="list" icon="http://cdn.uviewui.com/uview/empty/list.png">
</u-empty>
</view>
</view> </view>
</view> </view>
</template> </template>
@ -51,15 +59,12 @@
} }
], ],
List: [], list: [],
pageNo: 1, pageNo: 1,
pageSize: 10, pageSize: 10,
totalPage: '', totalPage: '',
rewardList: []
} }
},
onLoad() {
}, },
onPullDownRefresh() { onPullDownRefresh() {
// //
@ -82,6 +87,12 @@
components: { components: {
},
onLoad() {
},
onShow() {
this.getList()
}, },
methods: { methods: {
setIndex(num) { setIndex(num) {
@ -92,30 +103,22 @@
this.pageNo = 1 this.pageNo = 1
this.pageSize = 10 this.pageSize = 10
this.totalPage = '' this.totalPage = ''
this.List = [] this.list = []
}, },
// //
async getList() { getList() {
uni.showLoading({ request({
title: '加载中' url: '/business/marketingActivity/activeApplet/getRecommendedRecordsByStoreId',
});
let res = await request({
url: '网络请求',
method: 'get', method: 'get',
data: { params: {
pageNo: this.pageNo, storeId: uni.getStorageSync("storeId")
pageSize: this.pageSize, }
}).then(res => {
console.log(res, 106)
if (res.code == 200) {
this.list = res.data
} }
}) })
if (res.code == 200) {
uni.hideLoading(); //
if (this.pageNo != 1) {
this.List = this.ruleList.concat(res.result.records)
} else {
this.List = res.result.records
}
this.totalPage = res.result.pages
}
}, },
goback() { goback() {
uni.navigateBack() uni.navigateBack()
@ -133,7 +136,7 @@
width: 100%; width: 100%;
height: 100vh; height: 100vh;
box-sizing: border-box; box-sizing: border-box;
padding-top: 15px;
} }
.top_box { .top_box {
@ -185,7 +188,7 @@
.whit-box { .whit-box {
width: 95%; width: 95%;
background: #fff; background: #fff;
margin: 15px; margin: 10px auto;
} }