400 lines
9.5 KiB
Vue
400 lines
9.5 KiB
Vue
<template>
|
|
<view class="page">
|
|
<u-navbar title="会员卡" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
|
height='45'></u-navbar>
|
|
<view class="cont">
|
|
<view class="card2" v-for="(item,index) in huiyuanlist" :key="index">
|
|
<view class="card3" style="margin-top: 20rpx;" @click="btnxq(item.id)">
|
|
<view class="" style="font-size: 34rpx;font-weight: 600;display: flex;justify-content: space-between;align-items: center;">
|
|
<view class="">
|
|
{{item.name == null ? '--' : item.name}}
|
|
</view>
|
|
<view style="font-weight: 400;font-size: 24rpx;color: green;" v-if="item.status == 1">
|
|
已上架
|
|
</view>
|
|
<view style="font-weight: 400;font-size: 24rpx;color: orange;" v-if="item.status == 2">
|
|
已下架
|
|
</view>
|
|
</view>
|
|
<view class="top">
|
|
<view class="tit1">
|
|
时长{{item.time == null ? '--' :item.time}}天一共{{item.limitTotal == null ? '--' : item.limitTotal}}次
|
|
</view>
|
|
<view class="tit2">
|
|
{{item.price == null ? '--' : item.price}}<span style="font-size: 28rpx;">元</span>
|
|
</view>
|
|
</view>
|
|
<view class="middle">
|
|
<view class="tit3" v-if="item.limitType == 1">
|
|
没有限制
|
|
</view>
|
|
<view class="tit3" v-if="item.limitType == 2">
|
|
每周最多用{{item.limitCount == null ? '--' : item.limitCount}}次
|
|
</view>
|
|
<view class="tit3" v-if="item.limitType == 3">
|
|
每30天最多用{{item.limitCount == null ? '--' : item.limitCount}}次
|
|
</view>
|
|
<view class="tit4">
|
|
原价:{{item.originalPrice == null ? '--' : item.originalPrice}}元
|
|
</view>
|
|
</view>
|
|
<view class="bot">
|
|
<view class="bot_left">
|
|
<view class="txt3">
|
|
每次享折扣{{item.discount == null ? '--' : item.discount}}折
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="miaoshu">
|
|
描述:{{item.description == null ? '--' : item.description}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view style="width: 100%;text-align: center;margin-top: 30rpx;font-size: 32rpx;color: #ccc;">
|
|
没有更多会员卡啦...
|
|
</view>
|
|
</view>
|
|
|
|
<view class="anniu" @click="btnadd">
|
|
新增会员卡
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
bgc: {
|
|
backgroundColor: '#fff'
|
|
},
|
|
storeId:'',
|
|
huiyuanlist:[]
|
|
}
|
|
},
|
|
onLoad(option) {
|
|
if(option.storeId){
|
|
this.storeId = option.storeId
|
|
}
|
|
},
|
|
onShow() {
|
|
this.getlist()
|
|
},
|
|
methods: {
|
|
// 请求店铺会员卡列表
|
|
getlist(){
|
|
this.$u.get(`/mch/vipLevel/list?pageNum=1&pageSize=999&storeId=${this.storeId}`).then((res) => {
|
|
if (res.code == 200) {
|
|
this.huiyuanlist = res.rows
|
|
}
|
|
})
|
|
},
|
|
// 点击新建会员卡
|
|
btnadd(){
|
|
uni.navigateTo({
|
|
url:'/page_geren/addhuiyuan?storeId=' + this.storeId
|
|
})
|
|
},
|
|
// 点击修改
|
|
btnxq(id){
|
|
uni.navigateTo({
|
|
url:'/page_geren/addhuiyuan?id=' + id + '&storeId=' + this.storeId
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background-color: #fff;
|
|
}
|
|
.anniu{
|
|
width: 680rpx;
|
|
height: 100rpx;
|
|
border-radius: 50rpx;
|
|
background-color: #8883F0;
|
|
font-size: 38rpx;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
line-height: 100rpx;
|
|
position: fixed;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
bottom: 50rpx;
|
|
color: #fff;
|
|
}
|
|
.page {
|
|
width: 750rpx;
|
|
.buy_box {
|
|
padding: 0 46rpx;
|
|
position: fixed;
|
|
bottom: 0rpx;
|
|
left: 0rpx;
|
|
width: 750rpx;
|
|
height: 780rpx !important;
|
|
background: #FDFDFD;
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
z-index: 101;
|
|
// position: relative;
|
|
|
|
.tit_txt {
|
|
padding-top: 114rpx; /* 使用 padding-top 或者增加 overflow: hidden 来防止 margin 合并 */
|
|
font-weight: 600;
|
|
font-size: 28rpx;
|
|
color: #3D3D3D;
|
|
overflow: hidden; /* 防止 margin 合并 */
|
|
|
|
span {
|
|
color: #64B6A7;
|
|
}
|
|
}
|
|
|
|
.text {
|
|
margin-top: 16rpx;
|
|
font-weight: 400;
|
|
font-size: 28rpx;
|
|
color: #3D3D3D;
|
|
}
|
|
|
|
.taocan {
|
|
padding: 46rpx 40rpx;
|
|
position: absolute;
|
|
top: -140rpx;
|
|
left: 36rpx;
|
|
width: 680rpx;
|
|
height: 204rpx;
|
|
background: #fff;
|
|
border-radius: 20rpx;
|
|
z-index: 102;
|
|
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08), 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
|
|
|
|
.top {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
.tit1 {
|
|
font-weight: 500;
|
|
font-size: 32rpx;
|
|
color: #2F3240;
|
|
}
|
|
|
|
.tit2 {
|
|
font-weight: 500;
|
|
font-size: 40rpx;
|
|
color: #E46666;
|
|
}
|
|
}
|
|
|
|
.bot_left {
|
|
margin-top: 20rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
.txt3 {
|
|
padding: 4rpx 12rpx;
|
|
background: linear-gradient(90deg, rgba(228, 102, 102, 0.42) 0%, rgba(228, 102, 102, 0) 100%);
|
|
border-radius: 6rpx;
|
|
font-weight: 400;
|
|
font-size: 24rpx;
|
|
color: #E46666;
|
|
width: 100%;
|
|
}
|
|
|
|
.txt4 {
|
|
font-weight: 500;
|
|
font-size: 24rpx;
|
|
color: #808080;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btns_box {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
padding-top: 30rpx;
|
|
// align-items: center;
|
|
justify-content: space-around;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 750rpx;
|
|
height: 184rpx;
|
|
background: #FFFFFF;
|
|
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08), 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
|
|
z-index: 200;
|
|
.btn1{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 338rpx;
|
|
height: 90rpx;
|
|
border-radius: 45rpx 45rpx 45rpx 45rpx;
|
|
border: 2rpx solid #808080;
|
|
font-weight: 500;
|
|
font-size: 36rpx;
|
|
color: #808080;
|
|
}
|
|
.btn2{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 338rpx;
|
|
height: 90rpx;
|
|
background: #64B6A7;
|
|
border-radius: 45rpx 45rpx 45rpx 45rpx;
|
|
font-weight: 500;
|
|
font-size: 36rpx;
|
|
color: #FFFFFF;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.cont {
|
|
flex-wrap: wrap;
|
|
height: 80vh;
|
|
width: 100%;
|
|
margin: auto;
|
|
overflow: scroll;
|
|
padding-bottom: 240rpx;
|
|
box-sizing: border-box;
|
|
.card1{
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 28rpx;
|
|
width: 680rpx;
|
|
margin: auto;
|
|
height: 106rpx;
|
|
background: rgba(100,182,167,0.25);
|
|
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0,0,0,0.08);
|
|
border-radius: 20rpx 20rpx 20rpx 20rpx;
|
|
.txt1{
|
|
font-weight: 600;
|
|
font-size: 32rpx;
|
|
color: #3D3D3D;
|
|
span{
|
|
color: #E46666;
|
|
|
|
}
|
|
}
|
|
.txt2{
|
|
font-weight: 400;
|
|
font-size: 24rpx;
|
|
color: #2F3240;
|
|
image{
|
|
margin-left: 16rpx;
|
|
width: 8rpx;
|
|
height: 16rpx;
|
|
}
|
|
}
|
|
}
|
|
.card3{
|
|
margin-top: 16rpx;
|
|
padding: 20rpx 40rpx;
|
|
width: 680rpx;
|
|
margin: auto;
|
|
height: 270rpx;
|
|
background: #FFFFFF;
|
|
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0,0,0,0.08);
|
|
border-radius: 20rpx 20rpx 20rpx 20rpx;
|
|
.top{
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
.tit1{
|
|
font-weight: 500;
|
|
font-size: 32rpx;
|
|
color: #2F3240;
|
|
}
|
|
.tit2{
|
|
font-weight: 500;
|
|
font-size: 40rpx;
|
|
color: #E46666;
|
|
}
|
|
}
|
|
.middle{
|
|
margin-top: 10rpx;
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
.tit3{
|
|
font-weight: 500;
|
|
font-size: 24rpx;
|
|
color: #808080;
|
|
}
|
|
.tit4{
|
|
font-weight: 400;
|
|
font-size: 24rpx;
|
|
color: #808080;
|
|
text-decoration: line-through;
|
|
}
|
|
}
|
|
.miaoshu{
|
|
font-size: 24rpx;
|
|
color: #808080;
|
|
margin-top: 6rpx;
|
|
}
|
|
.bot{
|
|
margin-top: 10rpx;
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
.bot_left{
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
width: 100%;
|
|
.txt3{
|
|
padding: 4rpx 12rpx;
|
|
background: linear-gradient( 90deg, rgba(228,102,102,0.42) 0%, rgba(228,102,102,0) 100%);
|
|
border-radius: 6rpx 6rpx 6rpx 6rpx;
|
|
font-weight: 400;
|
|
font-size: 24rpx;
|
|
color: #E46666;
|
|
width: 100%;
|
|
}
|
|
.txt4{
|
|
margin-left: 16rpx;
|
|
padding: 4rpx 8rpx;
|
|
border-radius: 6rpx 6rpx 6rpx 6rpx;
|
|
border: 1rpx solid #808080;
|
|
font-weight: 400;
|
|
font-size: 24rpx;
|
|
color: #808080;
|
|
}
|
|
}
|
|
.btn{
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 144rpx;
|
|
height: 52rpx;
|
|
background: #E46666;
|
|
border-radius: 26rpx 26rpx 26rpx 26rpx;
|
|
font-weight: 500;
|
|
font-size: 28rpx;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
}
|
|
}
|
|
.card2{
|
|
margin-top: 16rpx;
|
|
width: 680rpx;
|
|
height: 290rpx;
|
|
margin: auto;
|
|
}
|
|
|
|
}
|
|
}
|
|
</style> |