123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <template>
- <view :style="colorStyle">
- <image :src="imgHost+'/statics/images/header.png'" mode="" class="img"></image>
- <view class="tipaddress">
- <view class="title">{{fromActive == 1?'激活送好礼':'新人大礼包'}}</view>
- <view class="list">
- <view class="list-img acea-row row-between-wrapper" :style="{backgroundImage:'url('+imgHost+'/statics/images/box1.png'+')'}" v-if="comerGift.product_count>0 && fromActive == 0">
- <view class="left acea-row row-center-wrapper">
- <image :src="imgHost+'/statics/images/vip.png'" mode=""></image>
- </view>
- <view class="right">新人专享价商品</view>
- </view>
- <view class="list-img acea-row row-between-wrapper" :style="{backgroundImage:'url('+imgHost+'/statics/images/box1.png'+')'}" v-if="comerGift.first_order_discount>0 && fromActive == 0">
- <view class="left">
- {{parseFloat(comerGift.first_order_discount)/10 || 10}}<text class="text">折</text>
- </view>
- <view class="right">新人首单优惠</view>
- </view>
- <view class="list-img acea-row row-between-wrapper" :style="{backgroundImage:'url('+imgHost+'/statics/images/box1.png'+')'}" v-if="comerGift.register_give_integral>0">
- <view class="left">{{comerGift.register_give_integral}}</view>
- <view class="right">新人赠送积分</view>
- </view>
- <view class="list-img acea-row row-between-wrapper" :style="{backgroundImage:'url('+imgHost+'/statics/images/box1.png'+')'}" v-if="comerGift.register_give_money>0">
- <view class="left">{{comerGift.register_give_money}}<text class="text">元</text></view>
- <view class="right">新人赠送余额</view>
- </view>
- <view class="list-img acea-row row-between-wrapper" :style="{backgroundImage:'url('+imgHost+'/statics/images/box1.png'+')'}" v-if="comerGift.coupon_count>0" v-for="(item,index) in comerGift.register_give_coupon" :key="index">
- <view class="left">
- <text v-if="item.coupon_type==1">{{item.coupon_price.toString().split(".")[0]}}</text>
- <text class="nums"
- v-if="item.coupon_price.toString().split('.').length>1 && item.coupon_type==1">.{{item.coupon_price.toString().split(".")[1]}}</text>
- <text v-if="item.coupon_type==2">{{parseFloat(item.coupon_price)/10}}</text>
- <text class="text">{{item.coupon_type==1?'元':'折'}}</text>
- </view>
- <view class="right">优惠券</view>
- </view>
- </view>
- <view class="btn" @click="accept">
- 立即收下
- </view>
- </view>
- <view class="mark"></view>
- </view>
- </template>
- <script>
- import {
- HTTP_REQUEST_URL
- } from '@/config/app';
- import colors from '@/mixins/color';
- export default {
- mixins: [colors],
- props:{
- comerGift: {
- type: Object,
- default: function() {
- return {}
- },
- },
- fromActive: {
- type: Number,
- default: 0
- }
- },
- data() {
- return {
- imgHost: HTTP_REQUEST_URL,
- };
- },
- methods:{
- accept(){
- this.$emit('comerPop')
- }
- }
- }
- </script>
- <style lang="scss">
- .img {
- position: fixed;
- top: 162rpx;
- left: 9%;
- width: 590rpx;
- height: 294rpx;
- z-index: 100;
- }
- .tipaddress {
- position: fixed;
- left: 13%;
- top: 25%;
- width: 538rpx;
- height: 650rpx;
- background-color: var(--view-theme);
- border-radius: 10rpx;
- z-index: 100;
- text-align: center;
-
- .title{
- color: #fff;
- font-size: 50rpx;
- margin-top: 32rpx;
- margin-bottom: 18rpx;
- }
- .goods-img {
- width: 258rpx;
- height: 52rpx;
- margin-top: 50rpx;
- }
- .list {
- height: 370rpx;
- overflow-x: hidden;
- overflow-y: auto;
- .list-img {
- margin-top: 14rpx;
- margin-left: 32rpx;
- width: 474rpx;
- height: 124rpx;
- background-repeat: no-repeat;
- background-size: 100% 100%;
- .left {
- width: 144rpx;
- font-size: 48rpx;
- font-weight: 500;
- color: var(--view-theme);
-
- image{
- width: 72rpx;
- height: 72rpx;
- display: block;
- }
- .text {
- font-size: 24rpx;
- }
-
- .nums{
- font-size: 30rpx;
- }
- }
- .right {
- width: 328rpx;
- font-size: 28rpx;
- font-weight: 500;
- color: var(--view-theme);
- text-align: left;
- padding-left: 50rpx;
- }
- }
- }
- .btn {
- width: 474rpx;
- height: 78rpx;
- background: linear-gradient(90deg, #FFCA52 0%, #FE960F 100%);
- border-radius: 39rpx;
- font-size: 30rpx;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 78rpx;
- text-align: center;
- margin-left: 32rpx;
- margin-top: 48rpx;
- }
- }
- .mark {
- position: fixed;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: rgba(0, 0, 0, 0.5);
- z-index: 99;
- }
- </style>
|