feat(uniapp_v2): 二开功能迁移与小程序主包优化
- 从 uniapp 迁移 HJF 页面、API、组件及用户/订单相关改动 - queue、assets 使用独立分包以降低主包体积 - 修复首页单根节点与支付结果页 v-if 链 - 关闭 HjfDemoPanel 全局注册;uniNoticeBar 注释 $getAppWebview 避免 __webviewId__ 报错 - 配置域名与 manifest 应用名称;cache/store 防御性处理 Made-with: Cursor
This commit is contained in:
736
pro_v3.5.1/view/uniapp_v2/pages/index/components/coupon.vue
Normal file
736
pro_v3.5.1/view/uniapp_v2/pages/index/components/coupon.vue
Normal file
@@ -0,0 +1,736 @@
|
||||
<template>
|
||||
<!-- 优惠券 -->
|
||||
<view :style="[couponWrapStyle]" v-show="!dataConfig.isHide && couponList.length">
|
||||
<view class="coupon-wrap" :style="[couponWrapBgColor]">
|
||||
<view v-if="dataConfig.styleConfig.tabVal == 0" class="coupon1">
|
||||
<scroll-view scroll-x="true">
|
||||
<view class="list acea-row">
|
||||
<view v-for="item in couponList" :key="item.id" class="item" :style="[couponItemFirstStyle, couponItemStyle]">
|
||||
<view class="text">
|
||||
<view class="money" :style="[couponMoneyColor]">
|
||||
<template v-if="item.coupon_type == 1">
|
||||
¥<text class="number">{{ item.coupon_price }}</text>
|
||||
</template>
|
||||
<template v-else-if="item.coupon_type == 2">
|
||||
<text class="number">{{ item.coupon_price / 10 }}</text>折
|
||||
</template>
|
||||
</view>
|
||||
<view class="info">
|
||||
<text v-if="item.use_min_price">满{{ item.use_min_price }}可用</text>
|
||||
<text v-else>无门槛券</text>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="item.is_use == true" class="button" :style="[bntBgColor]">已领取</view>
|
||||
<view v-else-if="item.is_use == false" class="button" :style="[bntBgColor]" @click="receiveCoupon(item)">去领取</view>
|
||||
<view v-else-if="item.is_use == 2" class="button" :style="[bntBgColor]">已过期</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
<view v-else-if="dataConfig.styleConfig.tabVal == 1" class="coupon2">
|
||||
<scroll-view scroll-x="true">
|
||||
<view class="list acea-row">
|
||||
<view v-for="item in couponList" :key="item.id" class="item" :style="[couponItemStyle]">
|
||||
<view class="name">{{ item.type | typeFilter}}</view>
|
||||
<view class="text" :style="[couponMoneyColor]">
|
||||
<view class="money">
|
||||
<template v-if="item.coupon_type == 1">
|
||||
¥<text class="number">{{ item.coupon_price }}</text>
|
||||
</template>
|
||||
<template v-else-if="item.coupon_type == 2">
|
||||
<text class="number">{{ item.coupon_price / 10 }}</text>折
|
||||
</template>
|
||||
</view>
|
||||
<view class="info">
|
||||
<text v-if="item.use_min_price">满{{ item.use_min_price }}可用</text>
|
||||
<text v-else>无门槛券</text>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="item.is_use == true" class="button" :style="[bntBgColor]">已领取</view>
|
||||
<view v-else-if="item.is_use == false" class="button" :style="[bntBgColor]" @click="receiveCoupon(item)">去领取</view>
|
||||
<view v-else-if="item.is_use == 2" class="button" :style="[bntBgColor]">已过期</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
<view v-else-if="dataConfig.styleConfig.tabVal == 2" class="coupon3" :style="[coupon3Color]">
|
||||
<scroll-view scroll-x="true">
|
||||
<view class="list acea-row">
|
||||
<view v-for="item in couponList" :key="item.id" class="item" :style="[couponItemStyle]">
|
||||
<view class="inner acea-row">
|
||||
<view class="text acea-row row-column row-middle row-center">
|
||||
<view class="money">
|
||||
<template v-if="item.coupon_type == 1">
|
||||
¥<text class="number">{{ item.coupon_price }}</text>
|
||||
</template>
|
||||
<template v-else-if="item.coupon_type == 2">
|
||||
<text class="number">{{ item.coupon_price / 10 }}</text>折
|
||||
</template>
|
||||
</view>
|
||||
<view class="info">
|
||||
<text v-if="item.use_min_price">满{{ item.use_min_price }}可用</text>
|
||||
<text v-else>无门槛券</text>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="item.is_use == true" class="button acea-row row-middle">已领取</view>
|
||||
<view v-else-if="item.is_use == false" class="button acea-row row-middle" @click="receiveCoupon(item)">立即领取</view>
|
||||
<view v-else-if="item.is_use == 2" class="button acea-row row-middle">已过期</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
<view v-else-if="dataConfig.styleConfig.tabVal == 3" class="coupon4" :style="[coupon4Color]">
|
||||
<view class="content">
|
||||
<scroll-view scroll-x="true">
|
||||
<view class="list acea-row">
|
||||
<view v-for="item in couponList" :key="item.id" :style="[couponItemStyle]" class="item">
|
||||
<view class="name" :style="typeStyle">
|
||||
<view class="inner">{{ item.type | typeFilter }}</view>
|
||||
</view>
|
||||
<view class="text">
|
||||
<view class="money" :style="[couponMoneyColor]">
|
||||
<template v-if="item.coupon_type == 1">
|
||||
¥<text class="number">{{ item.coupon_price }}</text>
|
||||
</template>
|
||||
<template v-else-if="item.coupon_type == 2">
|
||||
<text class="number">{{ item.coupon_price / 10 }}</text>折
|
||||
</template>
|
||||
</view>
|
||||
<view class="info">
|
||||
<text v-if="item.use_min_price">满{{ item.use_min_price }}可用</text>
|
||||
<text v-else>无门槛券</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
<view class="station acea-row row-column row-middle row-center" :style="[bntBgColor]">
|
||||
<view class="station-name">先领券 再购物</view>
|
||||
<view class="station-info">领券下单·享购物优惠</view>
|
||||
<view class="button" @click="goCoupon">立即领取</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view v-else-if="dataConfig.styleConfig.tabVal == 4" class="coupon5">
|
||||
<scroll-view scroll-x="true">
|
||||
<view class="list acea-row">
|
||||
<view v-for="item in couponList" :key="item.id" class="item acea-row" :style="[bntBgColor,couponItemStyle]">
|
||||
<view class="text acea-row row-column row-middle row-center">
|
||||
<view class="money" :style="[couponMoneyColor]">
|
||||
<template v-if="item.coupon_type == 1">
|
||||
¥<text class="number">{{ item.coupon_price }}</text>
|
||||
</template>
|
||||
<template v-else-if="item.coupon_type == 2">
|
||||
<text class="number">{{ item.coupon_price / 10 }}</text>折
|
||||
</template>
|
||||
</view>
|
||||
<view class="info" :style="[couponMoneyColor]">
|
||||
<text v-if="item.use_min_price">满{{ item.use_min_price }}可用</text>
|
||||
<text v-else>无门槛券</text>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="item.is_use == true" class="button acea-row row-middle">已领取</view>
|
||||
<view v-else-if="item.is_use == false" class="button acea-row row-middle" @click="receiveCoupon(item)">领取</view>
|
||||
<view v-else-if="item.is_use == 2" class="button acea-row row-middle">已过期</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
getCoupons,
|
||||
setCouponReceive
|
||||
} from '@/api/api.js';
|
||||
import {
|
||||
mapGetters
|
||||
} from "vuex";
|
||||
export default {
|
||||
props: {
|
||||
dataConfig: {
|
||||
type: Object,
|
||||
default: () => {}
|
||||
},
|
||||
isSortType: {
|
||||
type: String | Number,
|
||||
default: 0
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
isLogin: {
|
||||
handler: function(newV, oldV) {
|
||||
if (newV) {
|
||||
this.getCoupon();
|
||||
}
|
||||
},
|
||||
deep: true
|
||||
}
|
||||
},
|
||||
filters:{
|
||||
typeFilter(val){
|
||||
let obj = {
|
||||
0: '通用券',
|
||||
1: '品类券',
|
||||
2: '商品券',
|
||||
3: '品牌券',
|
||||
};
|
||||
return obj[val]
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
isAuto: false, //没有授权的不会自动授权
|
||||
isShowAuth: false, //是否隐藏授权
|
||||
couponList: [],
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
...mapGetters(['isLogin']),
|
||||
couponMoneyColor() {
|
||||
let styleObject = {};
|
||||
if (this.dataConfig.toneConfig.tabVal) {
|
||||
styleObject['color'] = this.dataConfig.couponMoneyColor.color[0].item;
|
||||
}
|
||||
return styleObject;
|
||||
},
|
||||
couponItemFirstStyle(){
|
||||
if (this.dataConfig.toneConfig.tabVal) {
|
||||
return {
|
||||
background: this.dataConfig.couponBgColor.color[0].item
|
||||
}
|
||||
}else{
|
||||
return {
|
||||
background: 'var(--view-theme)'
|
||||
}
|
||||
}
|
||||
},
|
||||
couponItemStyle() {
|
||||
// let styleObject = {
|
||||
// 'margin-right': `${this.dataConfig.spacingConfig.val * 2}rpx`,
|
||||
// };
|
||||
// if (this.dataConfig.toneConfig.tabVal) {
|
||||
// styleObject['background'] = this.dataConfig.couponBgColor.color[0].item;
|
||||
// if (this.dataConfig.styleConfig.tabVal == 3) {
|
||||
// styleObject['background'] = this.dataConfig.couponBgColor.color[0].item;
|
||||
// }
|
||||
// }
|
||||
return {
|
||||
'margin-right': `${this.dataConfig.spacingConfig.val * 2}rpx`,
|
||||
}
|
||||
},
|
||||
typeStyle(){
|
||||
if (!this.dataConfig.toneConfig.tabVal) {
|
||||
return {
|
||||
background: 'var(--view-theme)',
|
||||
color: 'var(--view-theme)'
|
||||
}
|
||||
}else{
|
||||
return {
|
||||
background: this.dataConfig.couponMoneyColor.color[0].item,
|
||||
color: this.dataConfig.couponMoneyColor.color[0].item
|
||||
}
|
||||
}
|
||||
},
|
||||
bntBgColor() {
|
||||
let styleObject = {};
|
||||
if (this.dataConfig.toneConfig.tabVal) {
|
||||
styleObject['background'] = `linear-gradient(180deg, ${this.dataConfig.bntBgColor.color[0].item} 0%, ${this.dataConfig.bntBgColor.color[1].item} 100%)`;
|
||||
}
|
||||
return styleObject;
|
||||
},
|
||||
coupon3Color() {
|
||||
let styleObject = {
|
||||
'--coupon3-color': 'var(--view-theme)',
|
||||
};
|
||||
if (this.dataConfig.toneConfig.tabVal) {
|
||||
styleObject['--coupon3-color'] = this.dataConfig.couponMoneyColor.color[0].item;
|
||||
}
|
||||
return styleObject;
|
||||
},
|
||||
coupon4Color() {
|
||||
let styleObject = {
|
||||
'--coupon4-color': 'var(--view-theme)',
|
||||
};
|
||||
if (this.dataConfig.toneConfig.tabVal) {
|
||||
styleObject['--coupon4-color'] = this.dataConfig.couponBgColor.color[0].item;
|
||||
}
|
||||
return styleObject;
|
||||
},
|
||||
couponWrapBgColor() {
|
||||
let styleObject = {
|
||||
'--module-color': this.dataConfig.moduleColor2.color[0].item,
|
||||
};
|
||||
if (this.dataConfig.styleConfig.tabVal == 1) {
|
||||
styleObject['--module-color'] = `linear-gradient(90deg,${this.dataConfig.moduleColor.color[0].item} 0%,${this.dataConfig.moduleColor.color[1].item} 100%)`;
|
||||
}
|
||||
// if (this.dataConfig.styleConfig.tabVal == 3) {
|
||||
let borderRadius = `${this.dataConfig.fillet.val * 2}rpx`;
|
||||
if (this.dataConfig.fillet.type) {
|
||||
borderRadius =
|
||||
`${this.dataConfig.fillet.valList[0].val * 2}rpx ${this.dataConfig.fillet.valList[1].val * 2}rpx ${this.dataConfig.fillet.valList[3].val * 2}rpx ${this.dataConfig.fillet.valList[2].val * 2}rpx`;
|
||||
}
|
||||
styleObject['border-radius'] = borderRadius;
|
||||
// }
|
||||
return styleObject;
|
||||
},
|
||||
couponWrapStyle() {
|
||||
return {
|
||||
'padding': `${this.dataConfig.topConfig.val * 2}rpx ${this.dataConfig.prConfig.val * 2}rpx ${this.dataConfig.bottomConfig.val * 2}rpx`,
|
||||
'margin-top': `${this.dataConfig.mbConfig.val * 2}rpx`,
|
||||
'background': this.dataConfig.bottomBgColor.color[0].item,
|
||||
};
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
this.getCoupon();
|
||||
},
|
||||
methods: {
|
||||
getCoupon: function() {
|
||||
let that = this;
|
||||
let limit = that.$config.LIMIT;
|
||||
getCoupons({
|
||||
page: 1,
|
||||
limit: this.dataConfig.numberConfig.val >= limit ? limit : this.dataConfig.numberConfig.val,
|
||||
}).then(res => {
|
||||
that.$set(that, 'couponList', res.data.list);
|
||||
}).catch(err => {
|
||||
return that.$util.Tips({
|
||||
title: err
|
||||
});
|
||||
});
|
||||
},
|
||||
receiveCoupon: function(item) {
|
||||
let that = this;
|
||||
if (!that.isLogin) {
|
||||
this.$emit('changeLogin');
|
||||
} else {
|
||||
setCouponReceive(item.id)
|
||||
.then(function() {
|
||||
item.is_use = true;
|
||||
that.$set(that, 'couponList', that.couponList);
|
||||
that.$util.Tips({
|
||||
title: "领取成功"
|
||||
});
|
||||
})
|
||||
.catch(function(err) {
|
||||
that.$util.Tips({
|
||||
title: err
|
||||
});
|
||||
});
|
||||
}
|
||||
},
|
||||
goCoupon() {
|
||||
uni.navigateTo({
|
||||
url: '/pages/activity/coupon/index'
|
||||
})
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.coupon-wrap {
|
||||
background: var(--module-color);
|
||||
}
|
||||
|
||||
.coupon1 {
|
||||
padding: 24rpx 0 24rpx 24rpx;
|
||||
|
||||
.list {
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
.item {
|
||||
flex-shrink: 0;
|
||||
position: relative;
|
||||
width: 156rpx;
|
||||
height: 156rpx;
|
||||
border-radius: 32rpx;
|
||||
margin-top: 20rpx;
|
||||
margin-right: 12rpx;
|
||||
background: var(--view-theme);
|
||||
|
||||
.text {
|
||||
width: 144rpx;
|
||||
height: 156rpx;
|
||||
padding-top: 22rpx;
|
||||
border: 2rpx solid #FCEAE9;
|
||||
border-radius: 16rpx;
|
||||
margin: -20rpx auto 0;
|
||||
background: #FFFFFF;
|
||||
}
|
||||
|
||||
.money {
|
||||
height: 40rpx;
|
||||
text-align: center;
|
||||
font-weight: 500;
|
||||
font-size: 28rpx;
|
||||
color: var(--view-theme);
|
||||
}
|
||||
|
||||
.number {
|
||||
font-family: SemiBold;
|
||||
font-size: 40rpx;
|
||||
line-height: 40rpx;
|
||||
}
|
||||
|
||||
.info {
|
||||
margin-top: 10rpx;
|
||||
text-align: center;
|
||||
font-size: 18rpx;
|
||||
line-height: 26rpx;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.button {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
height: 76rpx;
|
||||
padding-top: 28rpx;
|
||||
border-radius: 0 0 32rpx 32rpx;
|
||||
background: linear-gradient(90deg, var(--view-theme) 0%, var(--view-gradient) 100%);
|
||||
text-align: center;
|
||||
font-weight: 500;
|
||||
font-size: 24rpx;
|
||||
color: #FFFFFF;
|
||||
|
||||
&::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 156rpx;
|
||||
height: 20rpx;
|
||||
border: 8rpx solid #FCEAE9;
|
||||
border-top-color: #FFFFFF;
|
||||
border-bottom-right-radius: 78rpx 20rpx;
|
||||
border-bottom-left-radius: 78rpx 20rpx;
|
||||
box-sizing: border-box;
|
||||
background: #FFFFFF;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.coupon2 {
|
||||
padding: 24rpx 0 24rpx 24rpx;
|
||||
|
||||
.list {
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
.item {
|
||||
flex-shrink: 0;
|
||||
width: 204rpx;
|
||||
height: 232rpx;
|
||||
padding-top: 28rpx;
|
||||
border-radius: 16rpx;
|
||||
margin-top: 0;
|
||||
margin-right: 12rpx;
|
||||
background: #FFFFFF;
|
||||
}
|
||||
|
||||
.name {
|
||||
text-align: center;
|
||||
font-weight: 500;
|
||||
font-size: 24rpx;
|
||||
line-height: 34rpx;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.text {
|
||||
margin-top: 8rpx;
|
||||
text-align: center;
|
||||
color: var(--view-theme);
|
||||
}
|
||||
|
||||
.money {
|
||||
height: 48rpx;
|
||||
font-weight: 500;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.number {
|
||||
font-family: SemiBold;
|
||||
font-size: 44rpx;
|
||||
}
|
||||
|
||||
.info {
|
||||
font-size: 18rpx;
|
||||
line-height: 26rpx;
|
||||
}
|
||||
|
||||
.button {
|
||||
width: 136rpx;
|
||||
height: 48rpx;
|
||||
border-radius: 24rpx;
|
||||
margin: 12rpx auto 0;
|
||||
background: linear-gradient(90deg, var(--view-theme) 0%, var(--view-gradient) 100%);
|
||||
text-align: center;
|
||||
font-weight: 500;
|
||||
font-size: 24rpx;
|
||||
line-height: 48rpx;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
}
|
||||
|
||||
.coupon3 {
|
||||
padding: 24rpx 0 24rpx 24rpx;
|
||||
border-radius: 16rpx;
|
||||
|
||||
.list {
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
.item {
|
||||
flex-shrink: 0;
|
||||
width: 274rpx;
|
||||
height: 150rpx;
|
||||
border: 1rpx solid var(--coupon3-color);
|
||||
border-radius: 16rpx;
|
||||
margin-top: 0;
|
||||
margin-right: 12rpx;
|
||||
background: var(--coupon3-color);
|
||||
}
|
||||
|
||||
.inner {
|
||||
height: 100%;
|
||||
border-radius: 15rpx;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
}
|
||||
|
||||
.text {
|
||||
flex: 1;
|
||||
position: relative;
|
||||
|
||||
&::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
z-index: 2;
|
||||
width: 16rpx;
|
||||
height: 16rpx;
|
||||
border: 1rpx solid var(--coupon3-color);
|
||||
border-radius: 50%;
|
||||
background: var(--module-color);
|
||||
transform: translate(50%, -50%);
|
||||
}
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
z-index: 2;
|
||||
width: 16rpx;
|
||||
height: 16rpx;
|
||||
border: 1rpx solid var(--coupon3-color);
|
||||
border-radius: 50%;
|
||||
background: var(--module-color);
|
||||
transform: translate(50%, 50%);
|
||||
}
|
||||
}
|
||||
|
||||
.money {
|
||||
height: 48rpx;
|
||||
text-align: center;
|
||||
font-weight: 500;
|
||||
font-size: 28rpx;
|
||||
color: var(--coupon3-color);
|
||||
}
|
||||
|
||||
.number {
|
||||
font-family: SemiBold;
|
||||
font-size: 44rpx;
|
||||
}
|
||||
|
||||
.info {
|
||||
margin-top: 8rpx;
|
||||
text-align: center;
|
||||
font-size: 24rpx;
|
||||
line-height: 34rpx;
|
||||
color: var(--coupon3-color);
|
||||
}
|
||||
|
||||
.button {
|
||||
position: relative;
|
||||
width: 74rpx;
|
||||
padding: 0 24rpx;
|
||||
font-size: 26rpx;
|
||||
line-height: 28rpx;
|
||||
color: var(--coupon3-color);
|
||||
|
||||
&::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 12rpx;
|
||||
bottom: 12rpx;
|
||||
left: 0;
|
||||
border-left: 1rpx dashed var(--coupon3-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.coupon5 {
|
||||
padding: 24rpx 0 24rpx 20rpx;
|
||||
border-radius: 16rpx;
|
||||
|
||||
.list {
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
.item {
|
||||
flex-shrink: 0;
|
||||
width: 228rpx;
|
||||
height: 108rpx;
|
||||
border-radius: 12rpx;
|
||||
margin-right: 12rpx;
|
||||
background: linear-gradient(0deg, var(--view-theme) 0%, var(--view-gradient) 100%);
|
||||
}
|
||||
|
||||
.text {
|
||||
flex: 1;
|
||||
border-radius: 12rpx;
|
||||
background: radial-gradient(circle at left 54rpx, var(--module-color) 11rpx, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%) top;
|
||||
}
|
||||
|
||||
.money {
|
||||
height: 48rpx;
|
||||
font-weight: 500;
|
||||
font-size: 28rpx;
|
||||
color: var(--view-theme);
|
||||
}
|
||||
|
||||
.number {
|
||||
font-family: SemiBold;
|
||||
font-size: 44rpx;
|
||||
}
|
||||
|
||||
.info {
|
||||
font-size: 22rpx;
|
||||
line-height: 30rpx;
|
||||
color: var(--view-theme);
|
||||
}
|
||||
|
||||
.button {
|
||||
width: 56rpx;
|
||||
padding: 0 16rpx;
|
||||
font-size: 24rpx;
|
||||
line-height: 28rpx;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
}
|
||||
|
||||
.coupon4 {
|
||||
padding: 24rpx 20rpx;
|
||||
border-radius: 16rpx;
|
||||
|
||||
.content {
|
||||
position: relative;
|
||||
padding: 20rpx 296rpx 20rpx 20rpx;
|
||||
border-radius: 24rpx;
|
||||
background: var(--coupon4-color);
|
||||
}
|
||||
|
||||
.list {
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
.item {
|
||||
flex-shrink: 0;
|
||||
width: 140rpx;
|
||||
height: 132rpx;
|
||||
border-radius: 12rpx;
|
||||
margin-right: 12rpx;
|
||||
background: #FFFFFF;
|
||||
}
|
||||
|
||||
.name {
|
||||
width: 108rpx;
|
||||
height: 38rpx;
|
||||
line-height: 38rpx;
|
||||
border-radius: 0 0 19rpx 19rpx;
|
||||
margin: 0 auto;
|
||||
background: var(--coupon4-color);
|
||||
text-align: center;
|
||||
font-size: 22rpx;
|
||||
color: var(--coupon4-color);
|
||||
}
|
||||
|
||||
.inner {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 0 0 19rpx 19rpx;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
}
|
||||
|
||||
.money {
|
||||
height: 46rpx;
|
||||
margin-top: 10rpx;
|
||||
text-align: center;
|
||||
font-weight: 500;
|
||||
font-size: 28rpx;
|
||||
color: var(--coupon4-color);
|
||||
}
|
||||
|
||||
.number {
|
||||
font-family: SemiBold;
|
||||
font-size: 40rpx;
|
||||
}
|
||||
|
||||
.info {
|
||||
margin-top: 4rpx;
|
||||
text-align: center;
|
||||
font-size: 18rpx;
|
||||
line-height: 26rpx;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.station {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 296rpx;
|
||||
// padding-left: 12rpx;
|
||||
border-radius: 0 24rpx 24rpx 0;
|
||||
// background: radial-gradient(circle at -180rpx 86rpx, transparent 200rpx, var(--coupon4-color) 0%, var(--coupon4-color) 100%);
|
||||
background: linear-gradient(0deg, var(--view-theme) 0%, var(--view-gradient) 100%);
|
||||
// filter: drop-shadow(-16rpx 0rpx 10rpx rgba(0, 0, 0, 0.10));
|
||||
}
|
||||
|
||||
.station-name {
|
||||
font-weight: 500;
|
||||
font-size: 32rpx;
|
||||
line-height: 44rpx;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.station-info {
|
||||
margin-top: 4rpx;
|
||||
font-size: 20rpx;
|
||||
line-height: 28rpx;
|
||||
color: #F5F5F5;
|
||||
}
|
||||
|
||||
.button {
|
||||
width: 160rpx;
|
||||
height: 48rpx;
|
||||
border-radius: 24rpx;
|
||||
margin-top: 8rpx;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
text-align: center;
|
||||
font-weight: 500;
|
||||
font-size: 24rpx;
|
||||
line-height: 48rpx;
|
||||
color: var(--coupon4-color);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user