This commit is contained in:
@QQNZX 2024-02-03 09:33:52 +08:00
parent 206f171544
commit 4f377a7212
3 changed files with 19 additions and 9 deletions

View File

@ -32,9 +32,7 @@
>新增</el-button> >新增</el-button>
</el-col> </el-col>
</el-row> </el-row>
<el-table v-loading="loading" :data="activeConsumptionList" :label-position="labelPosition" @selection-change="handleSelectionChange"> <el-table v-loading="loading" :data="activeConsumptionList" :label-position="labelPosition" @selection-change="handleSelectionChange">
<el-table-column <el-table-column
type="index" type="index"
align="center" align="center"
@ -42,9 +40,7 @@
> >
</el-table-column> </el-table-column>
<el-table-column label="会员名字" align="center" prop="name" /> <el-table-column label="会员名字" align="center" prop="name" />
<el-table-column label="手机号" align="center" prop="mobile" /> <el-table-column label="手机号" align="center" prop="mobile" />
<el-table-column label="券名称" align="center" prop="cardFavorableName"/> <el-table-column label="券名称" align="center" prop="cardFavorableName"/>
<el-table-column label="券的类型" align="center" prop="discountType" > <el-table-column label="券的类型" align="center" prop="discountType" >
<template slot-scope="scope"> <template slot-scope="scope">

View File

@ -99,7 +99,7 @@
// //
recharge() { recharge() {
uni.navigateTo({ uni.navigateTo({
url: '/pagesHome/oilRecharge/oilRecharge' url: '/pagesHome/oilRecharge/oilRecharge?id=0'
}) })
}, },

View File

@ -9,7 +9,7 @@
</view> </view>
<view class="faimg"> <view class="faimg">
<view class="box-img"> <view class="box-img">
<image src="../../static/imgs/fmbj.png" mode="aspectFit"></image> <image src="../../static/imgs/fmbj.png" mode="aspectFit"></image>
</view> </view>
<view class="hbbox"> <view class="hbbox">
<view class="h-box"> <view class="h-box">
@ -45,7 +45,7 @@
<view class="t-box" v-for="(item,index) in activeRecommendRecordsList" :key="index"> <view class="t-box" v-for="(item,index) in activeRecommendRecordsList" :key="index">
<view class="diss"> <view class="diss">
<view class="touxiang"> <view class="touxiang">
<image src="../../static/imgs/myx.png" mode="aspectFit"></image> <image src="../../static/imgs/myx.png" mode="aspectFit"></image>
</view> </view>
<view class=""> <view class="">
<view class="name-t">{{item.inviteeUserName}}</view> <view class="name-t">{{item.inviteeUserName}}</view>
@ -101,7 +101,21 @@
console.log(codes); console.log(codes);
this.query.storeId = uni.getStorageSync("storeId"); this.query.storeId = uni.getStorageSync("storeId");
}, },
onShareAppMessage(res) {
if (res.from === 'button') { //
console.log(res.target)
}
return {
title: this.titles,
path: '/pages/index/index'
}
},
onShareTimeline(res) {
return {
title: this.titles,
path: '/pages/index/index'
}
},
components: { components: {
}, },
@ -402,4 +416,4 @@
padding: 0px !important; padding: 0px !important;
background-color: transparent; background-color: transparent;
} }
</style> </style>