优惠券开发

master
xindan 2021-10-14 23:11:00 +08:00
parent b45ac18c93
commit 72c1207a7d
8 changed files with 504 additions and 577 deletions

View File

@ -1,9 +1,6 @@
/*
*
*/
.coupon-container {
padding: 0 10rpx;
}
.coupon-container .item {
overflow: hidden;
height: 180rpx;

View File

@ -165,7 +165,6 @@
max-height: 80vh;
overflow-y: scroll;
overflow-x: hidden;
padding-bottom: 50rpx;
}
.coupon-container .item,
.coupon-container .v-right,

View File

@ -143,12 +143,12 @@
<icon type="clear" size="20"></icon>
</view>
</view>
<view v-if="plugins_coupon_list.length > 0" class="coupon-container oh br-b">
<view v-if="plugins_coupon_list.length > 0" class="coupon-container padding-horizontal-main padding-bottom-main oh">
<view class="not-use-tips tc">
<text @tap="plugins_coupon_not_use_event">使</text>
</view>
<block v-for="(item, index) in plugins_coupon_list" :key="index">
<view :class="'item spacing-mt bg-white radius ' + ((item.is_active || 0) == 1 ? 'item-disabled' : '')" :style="'border:1px solid ' + item.coupon.bg_color_value + ';'">
<view :class="'item spacing-mt bg-white border-radius-main ' + ((item.is_active || 0) == 1 ? 'item-disabled' : '')" :style="'border:1px solid ' + item.coupon.bg_color_value + ';'">
<view class="v-left fl">
<view class="base single-text" :style="'color:' + item.coupon.bg_color_value + ';'">
<text v-if="item.coupon.type == 0" class="symbol">{{currency_symbol}}</text>

View File

@ -367,7 +367,7 @@
<!-- 优惠券弹层 -->
<component-popup :prop-show="popup_coupon_status" prop-position="bottom" @onclose="popup_coupon_close_event">
<view class="coupon-popup padding-horizontal-main padding-top-main">
<view class="padding-horizontal-main padding-top-main">
<view class="close oh">
<view class="fr" @tap.stop="popup_coupon_close_event">
<icon type="clear" size="20"></icon>
@ -376,7 +376,7 @@
<view class="coupon-container padding-bottom-main">
<block v-if="(plugins_coupon_data || null) != null && plugins_coupon_data.data.length > 0">
<block v-for="(item, index) in plugins_coupon_data.data" :key="index">
<view :class="'item bg-white radius ' + (item.is_operable == 0 ? 'item-disabled' : '')" :style="'border:1px solid ' + item.bg_color_value + ';'">
<view :class="'item bg-white border-radius-main ' + (item.is_operable == 0 ? 'item-disabled' : '')" :style="'border:1px solid ' + item.bg_color_value + ';'">
<view class="v-left fl">
<view class="base single-text" :style="'color:' + item.bg_color_value + ';'">
<text v-if="item.type == 0" class="symbol">{{currency_symbol}}</text>

View File

@ -1,11 +1,11 @@
<template>
<view>
<image v-if="(data_base || null) != null && (data_base.banner_images || null) != null" class="banner wh-auto dis-block" :src="data_base.banner_images" mode="widthFix"></image>
<image v-if="(data_base || null) != null && (data_base.banner_images || null) != null" class="wh-auto dis-block" :src="data_base.banner_images" mode="widthFix"></image>
<!-- 优惠劵列表 -->
<view v-if="data_list.length > 0" class="coupon-container">
<view v-if="data_list.length > 0" class="coupon-container padding-main">
<block v-for="(item, index) in data_list" :key="index">
<view :class="'item spacing-mt bg-white ' + (item.is_operable == 0 ? 'item-disabled' : '')" :style="'border:1px solid ' + item.bg_color_value + ';'">
<view :class="'item border-radius-main bg-white spacing-mb ' + (item.is_operable == 0 ? 'item-disabled' : '')" :style="'border:1px solid ' + item.bg_color_value + ';'">
<view class="v-left fl">
<view class="base single-text" :style="'color:' + item.bg_color_value + ';'">
<text v-if="item.type == 0" class="symbol">{{currency_symbol}}</text>
@ -22,42 +22,19 @@
</view>
</block>
</view>
<view v-if="data_list_loding_status != 3">
<!--<import src="/pages/common/nodata.wxml"></import>-->
<block data-type="template" data-is="nodata" data-attr="status: data_list_loding_status, msg: data_list_loding_msg">
<!-- 1 加载中 -->
<view v-if="0 == 1" class="no-data-loding tc">
<text>加载中...</text>
<view v-else>
<!-- 提示信息 -->
<component-no-data :prop-status="data_list_loding_status" :prop-msg="data_list_loding_msg"></component-no-data>
</view>
<!-- 2 处理错误 -->
<view v-else-if="0 == 2" class="no-data-box tc">
<image src="/static/images/error.png" mode="widthFix"></image>
<view class="no-data-tips">{{msg || '处理错误'}}</view>
</view>
<!-- 0 默认没有数据 -->
<view v-else-if="0 == 0" class="no-data-box tc">
<image src="/static/images/empty.png" mode="widthFix"></image>
<view class="no-data-tips">{{msg || '没有相关数据'}}</view>
</view>
</block>
</view>
<!--<import src="/pages/common/bottom_line.wxml"></import>-->
<block data-type="template" data-is="bottom_line" data-attr="status: data_bottom_line_status">
<view v-if="(status || false)" class="data-bottom-line">
<view class="left fl"></view>
<view class="msg fl">我是有底线的</view>
<view class="right fr"></view>
</view>
</block>
<!-- 结尾 -->
<component-bottom-line :prop-status="data_bottom_line_status"></component-bottom-line>
</view>
</template>
<script>
const app = getApp();
import componentNoData from "../../../../components/no-data/no-data";
import componentBottomLine from "../../../../components/bottom-line/bottom-line";
export default {
data() {
@ -75,7 +52,10 @@ export default {
};
},
components: {},
components: {
componentNoData,
componentBottomLine
},
props: {},
onLoad(params) {
@ -85,8 +65,9 @@ export default {
onShow() {
//
this.init(); //
this.init();
//
this.init_config();
},
@ -102,7 +83,7 @@ export default {
return {
title: name,
desc: app.globalData.data.application_describe,
path: '/pages/index/index?referrer=' + user_id
path: '/pages/plugins/coupon/index/index?referrer=' + user_id
};
},
@ -139,13 +120,11 @@ export default {
uni.showLoading({
title: "加载中..."
});
if (self.data_list.length <= 0) {
self.setData({
data_list_loding_status: 1
});
}
uni.request({
url: app.globalData.get_request_url("index", "index", "coupon"),
method: "POST",
@ -154,7 +133,6 @@ export default {
success: res => {
uni.hideLoading();
uni.stopPullDownRefresh();
if (res.data.code == 0) {
var data = res.data.data;
var status = (data.data || []).length > 0;
@ -164,8 +142,9 @@ export default {
data_list_loding_msg: '',
data_list_loding_status: status ? 3 : 0,
data_bottom_line_status: status
}); //
});
//
if ((data.base || null) != null && (data.base.application_name || null) != null) {
uni.setNavigationBarTitle({
title: data.base.application_name
@ -206,11 +185,10 @@ export default {
temp_coupon_receive_index: index,
temp_coupon_receive_value: value
});
} //
}
//
var user = app.globalData.get_user_info(this, 'coupon_receive_event');
if (user != false) {
//
if (app.globalData.user_is_need_login(user)) {
@ -219,9 +197,7 @@ export default {
});
return false;
} else {
var self = this;
var temp_list = this.data_list;
if (temp_list[index]['is_operable'] != 0) {
uni.showLoading({
title: "处理中..."
@ -233,24 +209,20 @@ export default {
"coupon_id": value
},
dataType: "json",
header: {
'content-type': 'application/x-www-form-urlencoded'
},
success: res => {
uni.hideLoading();
if (res.data.code == 0) {
app.globalData.showToast(res.data.msg, "success");
if (self.data_base != null && self.data_base.is_repeat_receive != 1) {
if (this.data_base != null && this.data_base.is_repeat_receive !=
1) {
temp_list[index]['is_operable'] = 0;
temp_list[index]['is_operable_name'] = '已领取';
self.setData({
this.setData({
data_list: temp_list
});
}
} else {
if (app.globalData.is_login_check(res.data, self, 'coupon_receive_event')) {
if (app.globalData.is_login_check(res.data, this, 'coupon_receive_event')) {
app.globalData.showToast(res.data.msg);
}
}
@ -264,7 +236,8 @@ export default {
}
}
}
}
};
</script>
<style>
</style>

View File

@ -0,0 +1,22 @@
/*
*
*/
.nav {
height: 80rpx;
line-height: 80rpx;
}
.nav .item {
width: 33.33%;
}
/*
*
*/
.scroll-box {
height: calc(100vh - 80rpx);
}
.coupon-container .item,
.coupon-container .v-right,
.coupon-container .v-right .circle {
height: 230rpx;
}

View File

@ -1,19 +1,18 @@
<template>
<view>
<!-- 导航 -->
<view class="nav-tabs">
<view class="nav bg-white">
<block v-for="(item, index) in nav_tabs_list" :key="index">
<view :class="'nav-item cr-base fl ' + (item.value == nav_tabs_value ? 'nav-item-active' : '')" :data-index="index" :data-value="item.value" @tap="nav_tabs_event">{{item.name}}</view>
<view :class="'item fl tc cr-gray ' + (item.value == nav_tabs_value ? 'cr-main' : '')" :data-index="index" :data-value="item.value" @tap="nav_tabs_event">{{item.name}}</view>
</block>
</view>
<scroll-view :scroll-y="true" class="scroll-box" lower-threshold="30">
<!-- 优惠劵列表 -->
<view v-if="data_list != null" class="coupon-container">
<view v-if="data_list != null" class="coupon-container padding-horizontal-main padding-top-main">
<!-- 未使用 -->
<view v-if="(data_list.not_use || null) != null && data_list.not_use.length > 0 && nav_tabs_value == 'not_use'">
<block v-if="(data_list.not_use || null) != null && data_list.not_use.length > 0 && nav_tabs_value == 'not_use'">
<block v-for="(item, index) in data_list.not_use" :key="index">
<view class="item spacing-mt bg-white" :style="'border:1px solid ' + item.coupon.bg_color_value + ';'">
<view class="item spacing-mb bg-white border-radius-main" :style="'border:1px solid ' + item.coupon.bg_color_value + ';'">
<view class="v-left fl">
<view class="base single-text" :style="'color:' + item.coupon.bg_color_value + ';'">
<text v-if="item.coupon.type == 0" class="symbol">{{currency_symbol}}</text>
@ -32,12 +31,12 @@
</navigator>
</view>
</block>
</view>
</block>
<!-- 已使用 -->
<view v-if="(data_list.already_use || null) != null && data_list.already_use.length > 0 && nav_tabs_value == 'already_use'">
<block v-if="(data_list.already_use || null) != null && data_list.already_use.length > 0 && nav_tabs_value == 'already_use'">
<block v-for="(item, index) in data_list.already_use" :key="index">
<view class="item spacing-mt bg-white item-disabled">
<view class="item spacing-mb bg-white border-radius-main item-disabled">
<view class="v-left fl">
<view class="base single-text">
<text v-if="item.coupon.type == 0" class="symbol">{{currency_symbol}}</text>
@ -46,7 +45,7 @@
<text v-if="(item.coupon.desc || null) != null" class="desc cr-gray">{{item.coupon.desc}}</text>
</view>
<view v-if="(item.coupon.use_limit_type_name || null) != null" class="base-tips cr-base single-text">{{item.coupon.use_limit_type_name}}</view>
<view class="base-time cr-gray single-text">使用 {{item.use_time_text}}</view>
<view class="base-time cr-gray single-text">使用 {{item.use_time_time}}</view>
</view>
<view class="v-right fr">
<text class="circle"></text>
@ -54,12 +53,12 @@
</view>
</view>
</block>
</view>
</block>
<!-- 已过期 -->
<view v-if="(data_list.already_expire || null) != null && data_list.already_expire.length > 0 && nav_tabs_value == 'already_expire'">
<block v-if="(data_list.already_expire || null) != null && data_list.already_expire.length > 0 && nav_tabs_value == 'already_expire'">
<block v-for="(item, index) in data_list.already_expire" :key="index">
<view class="item spacing-mt bg-white item-disabled">
<view class="item spacing-mt bg-white border-radius-main item-disabled">
<view class="v-left fl">
<view class="base single-text">
<text v-if="item.coupon.type == 0" class="symbol">{{currency_symbol}}</text>
@ -76,45 +75,21 @@
</view>
</view>
</block>
</view>
</view>
<view v-if="data_list_loding_status != 3">
<!--<import src="/pages/common/nodata.wxml"></import>-->
<block data-type="template" data-is="nodata" data-attr="status: data_list_loding_status, msg: data_list_loding_msg">
<!-- 1 加载中 -->
<view v-if="0 == 1" class="no-data-loding tc">
<text>加载中...</text>
</view>
<!-- 2 处理错误 -->
<view v-else-if="0 == 2" class="no-data-box tc">
<image src="/static/images/error.png" mode="widthFix"></image>
<view class="no-data-tips">{{msg || '处理错误'}}</view>
</view>
<!-- 0 默认没有数据 -->
<view v-else-if="0 == 0" class="no-data-box tc">
<image src="/static/images/empty.png" mode="widthFix"></image>
<view class="no-data-tips">{{msg || '没有相关数据'}}</view>
</view>
</block>
</view>
<!--<import src="/pages/common/bottom_line.wxml"></import>-->
<block data-type="template" data-is="bottom_line" data-attr="status: data_bottom_line_status">
<view v-if="(status || false)" class="data-bottom-line">
<view class="left fl"></view>
<view class="msg fl">我是有底线的</view>
<view class="right fr"></view>
</view>
</block>
<!-- 提示信息 -->
<component-no-data :prop-status="data_list_loding_status" :prop-msg="data_list_loding_msg"></component-no-data>
<!-- 结尾 -->
<component-bottom-line :prop-status="data_bottom_line_status"></component-bottom-line>
</scroll-view>
</view>
</template>
<script>
const app = getApp();
import componentNoData from "../../../../components/no-data/no-data";
import componentBottomLine from "../../../../components/bottom-line/bottom-line";
export default {
data() {
@ -123,29 +98,28 @@ export default {
data_list_loding_status: 1,
data_list_loding_msg: '',
data_list: null,
nav_tabs_list: [{
name: "未使用",
value: "not_use"
}, {
name: "已使用",
value: "already_use"
}, {
name: "已过期",
value: "already_expire"
}],
nav_tabs_list: [
{ name: "未使用", value: "not_use" },
{ name: "已使用", value: "already_use" },
{ name: "已过期", value: "already_expire" },
],
nav_tabs_value: 'not_use',
//
currency_symbol: app.globalData.data.currency_symbol
};
},
components: {},
components: {
componentNoData,
componentBottomLine
},
props: {},
onShow() {
//
this.init(); //
this.init();
//
this.init_config();
},
@ -169,7 +143,6 @@ export default {
//
init() {
var user = app.globalData.get_user_info(this, "init");
if (user != false) {
//
if (app.globalData.user_is_need_login(user)) {
@ -195,13 +168,11 @@ export default {
uni.showLoading({
title: "加载中..."
});
if (this.data_list == null || (this.data_list[this.nav_tabs_value] || null) == null || this.data_list[this.nav_tabs_value].length <= 0) {
this.setData({
data_list_loding_status: 1
});
}
uni.request({
url: app.globalData.get_request_url("index", "coupon", "coupon"),
method: "POST",
@ -210,7 +181,6 @@ export default {
success: res => {
uni.hideLoading();
uni.stopPullDownRefresh();
if (res.data.code == 0) {
self.setData({
data_list: res.data.data || null,
@ -223,7 +193,6 @@ export default {
data_list_loding_status: 2,
data_list_loding_msg: res.data.msg
});
if (app.globalData.is_login_check(res.data, self, 'get_data_list')) {
app.globalData.showToast(res.data.msg);
}
@ -245,11 +214,9 @@ export default {
//
data_view_handle() {
var status = 0;
if (this.data_list != null && (this.data_list[this.nav_tabs_value] || null) != null && this.data_list[this.nav_tabs_value].length > 0) {
status = 3;
}
this.setData({
data_list_loding_status: status,
data_bottom_line_status: status == 3
@ -263,40 +230,9 @@ export default {
});
this.data_view_handle();
}
}
};
</script>
<style>
/*
* 导航
*/
.nav-tabs {
overflow: hidden;
background: #eee;
width: 100%;
}
.nav-tabs .nav-item {
text-align: center;
width: 33.33%;
height: 80rpx;
line-height: 80rpx;
border-bottom: 6rpx solid transparent;
}
.nav-tabs .nav-item-active {
color: #d2364c;
border-bottom: 6rpx solid #d2364c;
}
/*
* 数据列表
*/
.scroll-box{
height: calc(100vh - 80rpx);
}
.coupon-container .item,
.coupon-container .v-right,
.coupon-container .v-right .circle {
height: 230rpx;
}
@import './user.css';
</style>