| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504 |
- <template>
- <div class="ns-coupon">
- <div class="ns-coupon-info" v-if="adList.length">
- <div class="ns-coupon-wrap">
- <div class="coupon-name">
- <span class="ns-text-color">优惠券中心</span>
- <span class="ns-text-color-gray text12">省钱更多,领券更多</span>
- </div>
- <ul class="coupon-type clear-float">
- <li>
- <i></i>
- <span>限时抢券</span>
- </li>
- <li>
- <i></i>
- <span>叠加使用</span>
- </li>
- <li>
- <i></i>
- <span>种类多样</span>
- </li>
- </ul>
- <el-button @click="myCoupon">我的优惠券</el-button>
- </div>
- <div class="ns-coupon-img" v-loading="loadingAd">
- <el-carousel height="406px">
- <el-carousel-item v-for="item in adList" :key="item.adv_id">
- <el-image :src="$img(item.adv_image)" fit="cover" @click="$util.pushToTab(item.adv_url.url)" />
- </el-carousel-item>
- </el-carousel>
- </div>
- </div>
- <el-tabs>
- <div v-loading="loading">
- <ul class="ns-coupon-list" >
- <li class="ns-bg-color ns-coupon-li" v-for="(item, index) in couponList" :key="index" :class="item.count == item.lead_count ? 'no-coupon' : '' ">
- <div class="describe">
- <template>
- <span v-if="!item.discount || item.discount == '0.00'">¥{{ item.money }}</span>
- <span v-else>{{ item.discount }}折</span>
- </template>
- <span>{{ activeName == 'first' ? item.coupon_name : item.platformcoupon_name }}</span>
- <span v-if="activeName == 'first'">{{ item.goods_type == 1 ? '全部商品可用' : '指定商品可用' }}</span>
- <template>
- <span v-if="item.at_least == '0.00'">无门槛优惠券</span>
- <span v-else>满{{ item.at_least }}可使用</span>
- </template>
- <template>
- <span class="coupon-wrap-time" v-if="item.validity_type == 0">领取之日起{{ item.fixed_term }}日内有效</span>
- <span class="coupon-wrap-time" v-else-if="item.validity_type == 1">有效期至{{ $timeStampTurnTime(item.end_time) }}</span>
- <span class="coupon-wrap-time" v-else>长期有效</span>
- </template>
- </div>
- <div class="receive">
- <!-- 如果限领数为0 或者 领取数小于最大领取数 -->
- <a class="ns-text-color" v-if="item.count == item.lead_count">
- <span>已抢完</span>
- </a>
- <a class="ns-text-color" @click="couponTap(item, index)" v-else>
- <span v-if="item.useState == 0">立即领取</span>
- <span v-else>去使用</span>
- </a>
- </div>
- </li>
- </ul>
- <div class="empty-wrap" v-if="couponList.length <= 0">
- <div class="ns-text-align">暂无优惠券</div>
- </div>
- <div class="pager">
- <el-pagination background :pager-count="5" :total="total" prev-text="上一页" next-text="下一页" :current-page.sync="currentPage"
- :page-size.sync="pageSize" @size-change="handlePageSizeChange" @current-change="handleCurrentPageChange"
- hide-on-single-page></el-pagination>
- </div>
- </div>
- </el-tabs>
- </div>
- </template>
- <script>
- import {
- couponList,
- receiveCoupon
- } from '@/api/coupon';
- import {
- mapGetters
- } from 'vuex';
- import {
- adList
- } from '@/api/website';
- export default {
- name: 'coupon',
- components: {},
- data: () => {
- return {
- couponList: [],
- total: 0,
- currentPage: 1,
- pageSize: 9,
- couponBtnSwitch: false,
- activeName: 'first',
- loading: true,
- loadingAd: true,
- adList: []
- };
- },
- created() {
- if (this.addonIsExit && this.addonIsExit.coupon != 1) {
- this.$message({
- message: '优惠券插件未安装',
- type: 'warning',
- duration: 2000,
- onClose: () => {
- this.$route.push('/');
- }
- });
- } else {
- this.getAdList();
- this.getCanReceiveCouponQuery();
- }
- },
- computed: {
- ...mapGetters(['addonIsExit'])
- },
- watch: {
- addonIsExit() {
- if (this.addonIsExit.coupon != 1) {
- this.$message({
- message: '优惠券插件未安装',
- type: 'warning',
- duration: 2000,
- onClose: () => {
- this.$route.push('/');
- }
- });
- }
- }
- },
- head() {
- return {
- title: '领券专区-' + this.$store.state.site.siteInfo.site_name,
- meta: [{
- name: 'description',
- content: this.$store.state.site.siteInfo.seo_description
- },
- {
- name: 'keyword',
- content: this.$store.state.site.siteInfo.seo_keywords
- }
- ]
- }
- },
- methods: {
- getAdList() {
- adList({
- keyword: 'NS_PC_COUPON'
- })
- .then(res => {
- this.adList = res.data.adv_list;
- for (let i = 0; i < this.adList.length; i++) {
- if (this.adList[i].adv_url) this.adList[i].adv_url = JSON.parse(this.adList[i].adv_url);
- }
- this.loadingAd = false;
- })
- .catch(err => {
- this.loadingAd = false;
- });
- },
- handleClick(tab, event) {
- this.loading = true;
- // (this.currentPage = 1), this.getCanReceiveCouponQuery();
- },
- /**
- * 我的优惠券
- */
- myCoupon() {
- this.$util.pushToTab('/member/coupon');
- },
- /**
- * 获取优惠券列表
- */
- getCanReceiveCouponQuery() {
- couponList({
- page: this.currentPage,
- page_size: this.pageSize,
- activeName: this.activeName
- })
- .then(res => {
- this.couponList = res.data.list;
- this.total = res.data.count;
- this.couponList.forEach(v => {
- v.useState = 0;
- });
- this.loading = false;
- })
- .catch(err => {
- this.loading = false;
- this.$message.error(err.message);
- });
- },
- handlePageSizeChange(size) {
- this.pageSize = size;
- this.loading = true;
- this.getCanReceiveCouponQuery();
- },
- handleCurrentPageChange(page) {
- this.currentPage = page;
- this.loading = true;
- this.getCanReceiveCouponQuery();
- },
- /**
- * 点击优惠券
- */
- couponTap(item, index) {
- if (item.useState == 0) this.receiveCoupon(item, index);
- else this.toGoodsList(item);
- },
- /**
- * 领取优惠券
- */
- receiveCoupon(item, index) {
- if (this.couponBtnSwitch) return;
- this.couponBtnSwitch = true;
- var data = {
- site_id: item.site_id,
- activeName: this.activeName
- };
- data.coupon_type_id = item.coupon_type_id;
- receiveCoupon(data)
- .then(res => {
- // console.log(res)
- // console.log('12312313')
- // return false
- var data = res.data;
- let msg = res.message;
- if (res.code == 0) {
- msg = '领取成功';
- this.$message({
- message: msg,
- type: 'success'
- });
- } else {
- this.$message({
- message: msg,
- type: 'warning'
- });
- }
- let list = this.couponList;
- if (res.data.is_exist == 1) {
- for (let i = 0; i < list.length; i++) {
- if (this.activeName == 'first') {
- if (list[i].coupon_type_id == item.coupon_type_id) {
- list[i].useState = 1;
- }
- } else {
- if (list[i].platformcoupon_type_id == item.platformcoupon_type_id) {
- list[i].useState = 1;
- }
- }
- }
- } else {
- for (let i = 0; i < list.length; i++) {
- if (this.activeName == 'first') {
- if (list[i].coupon_type_id == item.coupon_type_id) {
- list[i].useState = 2;
- }
- } else {
- if (list[i].platformcoupon_type_id == item.platformcoupon_type_id) {
- list[i].useState = 2;
- }
- }
- }
- }
- this.couponBtnSwitch = false;
- this.$forceUpdate();
- })
- .catch(err => {
- if( err.message == '您尚未登录,请先进行登录' ){
- this.$router.push('/auth/login');
- } else {
- this.$message.error(err.message)
- }
- this.couponBtnSwitch = false;
- });
- },
- /**
- * 去购买
- */
- toGoodsList(item) {
- if (this.activeName == 'first') {
- if (item.goods_type != 1) {
- this.$router.push({
- path: '/goods/list',
- query: {
- coupon: item.coupon_type_id
- }
- });
- } else {
- this.$router.push({
- path: '/goods/list',
- });
- }
- } else {
- this.$router.push('/goods/list');
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .empty-wrap {
- margin-top: 20px;
- }
- .ns-coupon {
- width: $width;
- padding: 20px 0;
- margin: 0 auto;
- box-sizing: border-box;
- }
- .ns-coupon-info {
- background: url(../../assets/images/coupon-bg.png) no-repeat;
- background-size: cover;
- width: 100%;
- height: 450px;
- display: flex;
- .ns-coupon-wrap {
- width: 320px;
- padding: 20px;
- box-sizing: border-box;
- text-align: center;
- .coupon-name {
- margin: 45px 0 50px;
- span:nth-child(1) {
- display: block;
- line-height: 45px;
- font-size: 30px;
- }
- .ns-text-color-gray {
- color: #898989 !important;
- }
- .text12 {
- font-size: 12px;
- }
- }
- .coupon-type {
- margin-left: 20px;
- li {
- float: left;
- width: 80px;
- height: 100px;
- i {
- display: block;
- width: 50px;
- height: 50px;
- margin: 8px auto;
- }
- &:nth-child(1) i {
- background: url(../../assets/images/limited_time.png) no-repeat center;
- }
- &:nth-child(2) i {
- background: url(../../assets/images/superposition.png) no-repeat center;
- }
- &:nth-child(3) i {
- background: url(../../assets/images/coupon_type.png) no-repeat center;
- }
- }
- }
- .el-button {
- width: 200px;
- background-color: $base-color;
- color: #fff;
- margin-top: 70px;
- font-size: 18px;
- }
- }
- .ns-coupon-img {
- width: 850px;
- padding: 20px;
- box-sizing: border-box;
- img {
- width: 100%;
- height: 100%;
- }
- .el-carousel__item:nth-child(2n) {
- background-color: #99a9bf;
- }
- .el-carousel__item:nth-child(2n + 1) {
- background-color: #d3dce6;
- }
- }
- }
- .el-tabs {
- margin-top: 20px;
- }
- .ns-coupon-list {
- display: flex;
- flex-wrap: wrap;
- padding: 0 20px;
- .ns-coupon-li {
- background: url(../../assets/images/list_bj.png) no-repeat;
- width: 32%;
- height: 169px;
- margin-bottom: 20px;
- margin-right: 2%;
- background-size: cover;
- &.no-coupon {
- background: url(../../assets/images/no_coupon.png) no-repeat !important;
- background-color : #e6e6e6 !important;
- .describe{
- color : #999 !important;
- }
- .receive {
- .ns-text-color {
- color : #999 !important;
- }
- }
- }
- .describe {
- float: left;
- width: 250px;
- height: inherit;
- text-align: center;
- color: #fff;
- span {
- display: block;
- }
- span:nth-child(1) {
- font-size: 40px;
- margin-top: 20px;
- margin-bottom: 3px;
- line-height: 50px;
- }
- span:nth-child(3),
- span:nth-child(4),
- span:nth-child(5) {
- font-size: 12px;
- margin-left: 15px;
- line-height: 20px;
- }
- }
- .receive {
- float: right;
- width: 95px;
- height: inherit;
- text-align: center;
- a {
- display: inline-block;
- width: 30px;
- height: 120px;
- line-height: 120px;
- padding: 0 5px;
- margin-top: 25px;
- background-color: #fff;
- border-radius: 15px;
- cursor: pointer;
- box-sizing: border-box;
- span {
- display: inline-block;
- line-height: 20px;
- vertical-align: middle;
- }
- }
- }
- &:nth-child(3n) {
- margin-right: 0;
- }
- }
- }
- </style>
|