372 lines
9.0 KiB
Vue
372 lines
9.0 KiB
Vue
<template>
|
||
<view class="container">
|
||
<view class="towcontent">
|
||
<view class="towcontentlistxitem flex-start">
|
||
<view class="towcontentlistxitembox flex-colum"
|
||
:class="towcontentclickindex == index?'towcontentlistxitemboxopacity':''"
|
||
v-for="(item,index) in listbox" :key="index" @click="towcontentclick(index,item)">
|
||
<text class="title">{{item.name}}</text>
|
||
<image v-if="towcontentclickindex == index"
|
||
src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/index/today/dg.png" mode="widthFix">
|
||
</image>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<view class="containertop">
|
||
<view class="containertopbox">
|
||
<view class="containertopboxitem flex-start" v-for="(item,index) in list" :key="index">
|
||
<view class="containertopboxitemleft flex-colum"
|
||
:class="{'containertopboxitemleft_vip': item.type == 2,'containertopboxitemlefts': item.status != 0,}" v-if="item.type == 2">
|
||
<view class="containertopboxitemleft_one"
|
||
:class="item.status == 0?'':'containertopboxitemleft_ones'">
|
||
<block v-if="item.type == 2">
|
||
<text>{{item.num || 0}}</text>
|
||
<text style="font-size: 28rpx;margin-left: 6rpx;">张</text>
|
||
</block>
|
||
<block v-else >
|
||
<text style="font-size: 28rpx;margin-right: 6rpx;">¥</text>
|
||
<text>{{item.couponsAmount || 0}}</text>
|
||
</block>
|
||
|
||
</view>
|
||
<view class="containertopboxitemleft_tow"
|
||
:class="{
|
||
'containertopboxitemleft_tows': item.status != 0,
|
||
'containertopboxitemleft_nameVip': item.type == 2,
|
||
}">
|
||
{{ item.type == 2 ? item.detail : '优惠券(元)'}}
|
||
</view>
|
||
</view>
|
||
|
||
<view class="containertopboxitemright">
|
||
<view class="containertopboxitemright_one">
|
||
<view class="flex-start">
|
||
<image class="icon" src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/user/coupon_icon.png" mode="aspectFill">
|
||
<text class="title">{{ item.shopName }}</text>
|
||
</view>
|
||
<text>无门槛使用</text>
|
||
</view>
|
||
<view class="containertopboxitemright_tow">
|
||
<view> {{ item.type == 2 ? '会员商品券' : '通用红包券'}}</view>
|
||
<view
|
||
@click="navigatorGo(item)"
|
||
:class="item.status == 0?'containertopboxitemright_four containertopboxitemright_btn':'containertopboxitemright_fours containertopboxitemright_btn'">
|
||
{{item.status == 0 ? '去使用':'已使用'}}
|
||
</view>
|
||
</view>
|
||
<!-- <view class="containertopboxitemright_there">
|
||
有效期至:{{$u.timeFormat(item.endTime, 'yyyy/mm/dd') || '0'}}
|
||
</view> -->
|
||
|
||
</view>
|
||
</view>
|
||
|
||
<image style="width: 402rpx;height: 442rpx;margin:240rpx auto 32rpx;" src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/nomore.png"
|
||
v-if="list.length <= 0" mode="aspectFill"></image>
|
||
<u-loadmore :status="form.status" iconSize='24' fontSize='24' height='40' />
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
listbox: [{
|
||
name: '全部',
|
||
type: ''
|
||
},
|
||
{
|
||
name: '未使用',
|
||
type: '0'
|
||
},
|
||
{
|
||
name: '已使用',
|
||
type: '1'
|
||
}
|
||
],
|
||
towcontentclickindex: 0,
|
||
list: [],
|
||
status: "",
|
||
|
||
};
|
||
},
|
||
onLoad() {
|
||
this.ordermineCouponsthis()
|
||
},
|
||
|
||
methods: {
|
||
|
||
/**
|
||
* 切换类型
|
||
* @param {Object} index
|
||
* @param {Object} item
|
||
*/
|
||
towcontentclick(index, item) {
|
||
this.towcontentclickindex = index;
|
||
this.status = item.type;
|
||
this.ordermineCouponsthis()
|
||
},
|
||
|
||
/**
|
||
* 获取优惠券数据
|
||
*/
|
||
async ordermineCouponsthis() {
|
||
try {
|
||
let res = await this.api.getUserConpons({
|
||
userId: uni.cache.get('userInfo').id,
|
||
shopId: uni.cache.get('shopId'),
|
||
status: this.status
|
||
})
|
||
if (res.code == 0) {
|
||
this.list = res.data;
|
||
}
|
||
} catch (e) {
|
||
//TODO handle the exception
|
||
}
|
||
},
|
||
|
||
/**
|
||
* 去使用优惠券
|
||
*/
|
||
navigatorGo ( item ) {
|
||
if ( item.type == 2 ) {
|
||
uni.pro.navigateTo('/pages/order_food/order_food', {
|
||
shopId: item.shopId
|
||
})
|
||
}
|
||
},
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
page {
|
||
background: #fff;
|
||
}
|
||
|
||
.container {
|
||
.towcontent {
|
||
padding: 0 28rpx;
|
||
border-top: 16rpx solid #f7f7f7;
|
||
.towcontentlistxitem {
|
||
width: 100%;
|
||
margin-top: 32rpx;
|
||
|
||
.towcontentlistxitembox {
|
||
width: 33%;
|
||
font-family: PingFang SC, PingFang SC;
|
||
font-weight: 500;
|
||
font-size: 28rpx;
|
||
color: #333333;
|
||
|
||
image {
|
||
margin-top: 6rpx;
|
||
width: 38.83rpx;
|
||
height: 8.62rpx;
|
||
}
|
||
}
|
||
|
||
.towcontentlistxitemboxopacity {
|
||
width: 33%;
|
||
font-family: PingFang SC, PingFang SC;
|
||
font-weight: bold;
|
||
text{
|
||
color: #E3AD7F;
|
||
}
|
||
image {
|
||
width: 38.83rpx;
|
||
height: 8.62rpx;
|
||
}
|
||
}
|
||
|
||
|
||
}
|
||
}
|
||
|
||
.containertop {
|
||
padding: 40rpx 32rpx;
|
||
.containertopbox {
|
||
margin-top: 8rpx;
|
||
.containertopboxitem::after {
|
||
position: absolute;
|
||
bottom: 14rpx;
|
||
left: 14rpx;
|
||
content: '';
|
||
display: inline-block;
|
||
background: url(https://czg-qr-order.oss-cn-beijing.aliyuncs.com/coupontop.png) no-repeat;
|
||
width: 72.83rpx;
|
||
height: 77.14rpx;
|
||
background-size: cover;
|
||
}
|
||
|
||
.containertopboxitem {
|
||
margin-bottom: 32rpx;
|
||
width: 100%;
|
||
position: relative;
|
||
border-radius: 18rpx;
|
||
box-shadow: 0rpx 6rpx 12rpx 2rpx rgba(0, 0, 0, 0.16);
|
||
.containertopboxitemleft {
|
||
position: relative;
|
||
width: 182rpx;
|
||
height: 192rpx;
|
||
background: #E3AD7F;
|
||
border-radius: 18rpx 0rpx 0rpx 18rpx;
|
||
|
||
|
||
|
||
// ::before {
|
||
// content: '';
|
||
// position: absolute;
|
||
// bottom: 0rpx;
|
||
// left: 166rpx;
|
||
// background: #fff;
|
||
// display: inline-block;
|
||
// width: 32rpx;
|
||
// height: 16rpx;
|
||
// line-height: 32rpx;
|
||
// border-radius: 32rpx 32rpx 0 0;
|
||
// box-shadow: 0rpx 6rpx 12rpx 2rpx rgba(255, 255, 255, 0.16);
|
||
// z-index: 999;
|
||
|
||
// }
|
||
|
||
.containertopboxitemleft_one {
|
||
text {
|
||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||
font-weight: 500;
|
||
font-size: 60rpx;
|
||
color: #FFFFFF;
|
||
}
|
||
}
|
||
|
||
.containertopboxitemleft_ones {
|
||
text {
|
||
color: #999999;
|
||
}
|
||
}
|
||
|
||
.containertopboxitemleft_tow {
|
||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||
font-weight: 500;
|
||
font-size: 24rpx;
|
||
color: #FFFFFF;
|
||
}
|
||
.containertopboxitemleft_nameVip{
|
||
color: #967152;
|
||
}
|
||
|
||
.containertopboxitemleft_tows {
|
||
color: #999999;
|
||
}
|
||
}
|
||
.containertopboxitemleft::after {
|
||
content: '';
|
||
position: absolute;
|
||
top: -20rpx;
|
||
left: 166rpx;
|
||
background: #fff;
|
||
display: inline-block;
|
||
width: 40rpx;
|
||
height: 40rpx;
|
||
border-radius: 50%;
|
||
box-shadow: inset 0rpx -13rpx 7rpx -6rpx rgba(0, 0, 0, 0.1);
|
||
z-index: 999;
|
||
}
|
||
.containertopboxitemleft::before {
|
||
content: '';
|
||
position: absolute;
|
||
bottom: -20rpx;
|
||
left: 166rpx;
|
||
background: #fff;
|
||
display: inline-block;
|
||
width: 40rpx;
|
||
height: 40rpx;
|
||
border-radius: 50%;
|
||
box-shadow: inset 0rpx 25rpx 15rpx -4rpx rgba(0, 0, 0, 0.1);
|
||
z-index: 999;
|
||
|
||
}
|
||
.containertopboxitemleft_vip{
|
||
background-color: #E1D4B2;
|
||
}
|
||
.containertopboxitemlefts {
|
||
background: #F7F7F7;
|
||
}
|
||
|
||
.containertopboxitemright {
|
||
position: relative;
|
||
padding: 0 32rpx;
|
||
flex: auto;
|
||
height: 192rpx;
|
||
background: #FFFFFF;
|
||
border-radius: 0rpx 18rpx 18rpx 0rpx;
|
||
|
||
.containertopboxitemright_one {
|
||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||
padding: 16rpx 0 20rpx 0;
|
||
border-bottom: 1rpx dashed #707070;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
.icon{
|
||
width: 26rpx;
|
||
height: 26rpx;
|
||
margin-right: 14rpx;
|
||
}
|
||
text{
|
||
font-weight: bold;
|
||
font-size: 24rpx;
|
||
color: #666666;
|
||
}
|
||
.title{
|
||
color: #333;
|
||
}
|
||
}
|
||
|
||
.containertopboxitemright_tow {
|
||
margin-top: 24rpx;
|
||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||
font-weight: bold;
|
||
font-size: 32rpx;
|
||
color: #333333;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
}
|
||
|
||
.containertopboxitemright_there {
|
||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||
font-weight: 500;
|
||
font-size: 24rpx;
|
||
color: #999999;
|
||
}
|
||
|
||
.containertopboxitemright_btn{
|
||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||
font-weight: 500;
|
||
font-size: 24rpx;
|
||
padding: 8rpx 24rpx;
|
||
border-radius: 24rpx 24rpx 24rpx 24rpx;
|
||
}
|
||
|
||
.containertopboxitemright_four {
|
||
color: #FFFFFF;
|
||
background: #967152;
|
||
}
|
||
|
||
.containertopboxitemright_fours {
|
||
color: #999999;
|
||
background: #F7F7F7;
|
||
}
|
||
}
|
||
}
|
||
|
||
}
|
||
}
|
||
|
||
|
||
}
|
||
</style> |