10.17
This commit is contained in:
parent
3996c44056
commit
37c9eb40ce
@ -243,6 +243,11 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
updateMax(item) {
|
||||
this.cardCouponList.forEach(item1 => {
|
||||
if (item.vouchersId==item1.id){
|
||||
item.giftCardName = item1.name
|
||||
}
|
||||
})
|
||||
//先清空之前的值
|
||||
item.giftCardTotal = 1;
|
||||
// 更新最大值
|
||||
|
@ -4,33 +4,24 @@
|
||||
<view class="box-hang">
|
||||
<view class="dis">活动名称</view>
|
||||
<view class="">
|
||||
<text>{{activeInfo.name}}</text>
|
||||
<text>{{activeInfo.activeName}}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="box-hang">
|
||||
<view class="dis">活动时间</view>
|
||||
<view class="">
|
||||
<text>长期有效</text>
|
||||
<text>{{activeInfo.activeStartTime || '--'}}~{{activeInfo.activeEndTime || ""}}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="box-hang">
|
||||
<view class="dis">推荐人等级</view>
|
||||
<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="">
|
||||
<text>50元优惠券</text>
|
||||
<view v-if="activeInfo.couponList">
|
||||
<view class="box-hang" v-for="(item,index) in activeInfo.couponList" :key="index">
|
||||
<view class="dis">赠送优惠券</view>
|
||||
<view class="">
|
||||
<text>{{item.giftCardName || "--"}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="box-hang">
|
||||
<view class="dis">赠送积分</view>
|
||||
<view class="">
|
||||
@ -43,6 +34,12 @@
|
||||
<text>{{activeInfo.growaValue || 0}}成长值</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="box-hang">
|
||||
<view class="dis">活动详情</view>
|
||||
<view class="">
|
||||
<text>{{activeInfo.activityDetails || "--"}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
@ -19,9 +19,9 @@
|
||||
<view class="min-size">奖励记录</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="or-aniu">
|
||||
<button class="or-aniu" open-type="share">
|
||||
立即分享
|
||||
</view>
|
||||
</button>
|
||||
</view>
|
||||
<view class="h_bs">
|
||||
<view class="title_">推荐会员消费有礼</view>
|
||||
@ -33,7 +33,7 @@
|
||||
<view v-if="activeInfo.couponList">
|
||||
<view class="si_" v-for="(item,index) in activeInfo.couponList" :key="index">
|
||||
<view class="">赠送优惠券</view>
|
||||
<view class="">{{item.giftCardName}}</view>
|
||||
<view class="">{{item.giftCardName || "--"}}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@ -44,7 +44,7 @@
|
||||
<view class="backf">
|
||||
<view class="n_hang">
|
||||
<view class="">特权说明</view>
|
||||
<view class="">{{activeInfo.discountActiveDescribe}}</view>
|
||||
<view class="">加油立享优惠</view>
|
||||
</view>
|
||||
<view class="n_hang">
|
||||
<view class="">有效期</view>
|
||||
@ -74,10 +74,11 @@
|
||||
<view class="title_or">扫码领会员</view>
|
||||
<view class="d-s">
|
||||
<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 class="">
|
||||
<view class="tiitle_">百业兴加油站</view>
|
||||
<view class="tiitle_">{{store.name}}</view>
|
||||
<view class="size_">油站会员卡</view>
|
||||
</view>
|
||||
</view>
|
||||
@ -129,6 +130,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
titles:"",
|
||||
query: {
|
||||
storeId: ''
|
||||
},
|
||||
@ -154,6 +156,8 @@
|
||||
lon: "",
|
||||
// 店铺纬度信息
|
||||
lat: "",
|
||||
// url信息
|
||||
baseUrl: this.$baseUrl,
|
||||
// 店铺信息
|
||||
store: {
|
||||
name: "测试油站",
|
||||
@ -168,6 +172,13 @@
|
||||
// '&userId=' + uni.getStorageSync('userId') + '&type=yaoqingyouli'
|
||||
// console.log(codes);
|
||||
// this.query.storeId = uni.getStorageSync("storeId");
|
||||
// #ifdef MP-WEIXIN
|
||||
wx.showShareMenu({
|
||||
withShareTicket: true,
|
||||
//设置下方的Menus菜单,才能够让发送给朋友与分享到朋友圈两个按钮可以点击
|
||||
menus: ["shareAppMessage", "shareTimeline"]
|
||||
})
|
||||
// #endif
|
||||
},
|
||||
onShow() {
|
||||
this.getAllAmount();
|
||||
@ -205,7 +216,7 @@
|
||||
|
||||
wx.onShareAppMessage(function() {
|
||||
return {
|
||||
title: '来个油惠',
|
||||
title: '矩油惠 百业兴',
|
||||
path: '/pages/index/index',
|
||||
imageUrl: 'https://example.com/share.jpg',
|
||||
success: function(res) {
|
||||
@ -219,10 +230,11 @@
|
||||
},
|
||||
onShareAppMessage(res) {
|
||||
if (res.from === 'button') { // 来自页面内分享按钮
|
||||
console.log(res.target)
|
||||
console.log(res.target,233)
|
||||
|
||||
}
|
||||
return {
|
||||
title: '来个油惠',
|
||||
title: '矩油惠 百业兴',
|
||||
path: '/pages/index/index?storeId=' + uni.getStorageSync('storeId') + '&userId=' + uni
|
||||
.getStorageSync('userId') + '&type=yaoqingyouli'
|
||||
}
|
||||
@ -252,9 +264,10 @@
|
||||
// 下载图片
|
||||
savePicture() {
|
||||
console.log(230);
|
||||
let url = this.options.code;
|
||||
// 下载图片
|
||||
uni.downloadFile({
|
||||
url: 'https://www.example.com/file/test', //仅为示例,并非真实的资源
|
||||
url: url,
|
||||
success: (res) => {
|
||||
if (res.statusCode === 200) {
|
||||
console.log('下载成功');
|
||||
|
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<view class="content">
|
||||
<view class="container">
|
||||
<view class="top_box">
|
||||
<!-- <view class="top_box">
|
||||
<view class="two_t">
|
||||
<view class="">浏览人数</view>
|
||||
<view class="size_">50</view>
|
||||
@ -10,7 +10,7 @@
|
||||
<view class="">注册人数</view>
|
||||
<view class="size_">50</view>
|
||||
</view>
|
||||
</view>
|
||||
</view> -->
|
||||
<view class="tab_">
|
||||
<view class="t-box" :class="{'orsize' : tindex == index }" v-for="(item,index) in tabList" :key="index"
|
||||
@click="setIndex(index)">{{item.name}}</view>
|
||||
@ -22,16 +22,24 @@
|
||||
</view>
|
||||
</view>
|
||||
<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="touxiang">
|
||||
<image src="../../static/logo.png" mode=""></image>
|
||||
</view>
|
||||
<view class="">名字</view>
|
||||
<view class="">{{item.inviteeUserName || "--"}}</view>
|
||||
</view>
|
||||
<view class="">2024-8-7</view>
|
||||
<view class="">{{item.createTime}}</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>
|
||||
</template>
|
||||
@ -51,15 +59,12 @@
|
||||
}
|
||||
|
||||
],
|
||||
List: [],
|
||||
list: [],
|
||||
pageNo: 1,
|
||||
pageSize: 10,
|
||||
totalPage: '',
|
||||
|
||||
rewardList: []
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
|
||||
},
|
||||
onPullDownRefresh() {
|
||||
//下拉刷新
|
||||
@ -82,6 +87,12 @@
|
||||
|
||||
components: {
|
||||
|
||||
},
|
||||
onLoad() {
|
||||
|
||||
},
|
||||
onShow() {
|
||||
this.getList()
|
||||
},
|
||||
methods: {
|
||||
setIndex(num) {
|
||||
@ -92,30 +103,22 @@
|
||||
this.pageNo = 1
|
||||
this.pageSize = 10
|
||||
this.totalPage = ''
|
||||
this.List = []
|
||||
this.list = []
|
||||
},
|
||||
// 分页——网络请求
|
||||
async getList() {
|
||||
uni.showLoading({
|
||||
title: '加载中'
|
||||
});
|
||||
let res = await request({
|
||||
url: '网络请求',
|
||||
// 获取列表信息
|
||||
getList() {
|
||||
request({
|
||||
url: '/business/marketingActivity/activeApplet/getRecommendedRecordsByStoreId',
|
||||
method: 'get',
|
||||
data: {
|
||||
pageNo: this.pageNo,
|
||||
pageSize: this.pageSize,
|
||||
params: {
|
||||
storeId: uni.getStorageSync("storeId")
|
||||
}
|
||||
}).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() {
|
||||
uni.navigateBack()
|
||||
@ -133,7 +136,7 @@
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
box-sizing: border-box;
|
||||
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
.top_box {
|
||||
@ -185,7 +188,7 @@
|
||||
.whit-box {
|
||||
width: 95%;
|
||||
background: #fff;
|
||||
margin: 15px;
|
||||
margin: 10px auto;
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user