123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- <template>
- <view class="container">
- <view class="coupon-title">
- <view class="title-text">已发放的优惠券</view>
- </view>
- <view class="coupon-row" v-for="(item, index) in couponList" :key="index">
- <view class="coupon-left">
- <view class="coupon-left-price"><text style="font-size: 16px;">¥</text>{{item.discountAmount}}</view>
- <view class="coupon-left-text">满减金额</view>
- </view>
- <view class="coupon-info">
- <view class="coupon-text1">{{item.couponName}}</view>
- <view class="coupon-text1" style="margin-bottom: 4px;">满{{item.fullAmount}}减{{item.discountAmount}}</view>
- <view class="coupon-text2">{{'仅限用于' + item.name + '的店铺'}}</view>
- <view class="coupon-text2" style="color: #999999;">请于{{item.useEndTime.split(" ")[0]}}之前使用</view>
- </view>
- </view>
- <u-divider :color="isOver ? '#909399' : '#51A539'" :border-color="isOver ? '#909399' : '#51A539'" @click="handleLoadMore()">
- <u-loading mode="circle" v-if="loadingData"></u-loading>{{loadingData ? '加载中' : (isOver ? '没有更多了' : '点击加载更多')}}
- </u-divider>
- <view class="form-handle">
- <u-button type="success" shape="circle" :ripple="true" @click="addCoupon" class="handle-custom">发放优惠券</u-button>
- </view>
- <u-top-tips ref="uTips"></u-top-tips>
- </view>
- </template>
- <script>
- const NET = require('@/utils/request')
- const API = require('@/config/api')
- export default {
- data() {
- return {
- pageIndex: 1,
- isOver: false,
- loadingData: false,
- couponList: [],
- }
- },
- onShow() {
- this.pageIndex = 1
- this.isOver = false
- this.loadingData = false
- this.couponList = []
- this.getList()
- },
- onPullDownRefresh() {
- this.pageIndex = 1
- this.isOver = false
- this.loadingData = false
- this.couponList = []
- this.getList('refresh')
- },
- methods: {
- // 新增优惠券
- addCoupon() {
- uni.navigateTo({
- url: '/pagesMain/couponForm'
- });
- },
- // 懒加载
- handleLoadMore() {
- if (!this.isOver) {
- this.pageIndex++
- this.getList()
- }
- },
- // 获取列表数据
- getList(type) {
- this.loadingData = true
- NET.request(API.getCouponList, {
- pageIndex: this.pageIndex,
- pageSize: 10,
- }, 'GET').then(res => {
- if (type == 'refresh') {
- uni.stopPullDownRefresh();
- }
- this.loadingData = false
- this.isOver = res.data.pageInfoResVo.list.length != 10
- this.couponList = this.couponList.concat(res.data.pageInfoResVo.list)
- }).catch(error => {
- this.loadingData = false
- this.$refs.uTips.show({
- title: error.data.msg,
- type: 'warning',
- })
- })
- },
- },
- }
- </script>
- <style lang="less" scoped>
- page {
- width: 100%;
- height: 100%;
- }
- .container {
- width: 100%;
- height: 100%;
- float: left;
- box-sizing: border-box;
- padding-top: 55px;
- padding-bottom: 60px;
- background-color: #f7f7f7;
- overflow-y: auto;
- position: relative;
- .coupon-title {
- width: 100%;
- height: 45px;
- float: left;
- position: absolute;
- top: 0;
- box-sizing: border-box;
- padding: 13px 15px;
- background-color: #FFFFFF;
- margin-bottom: 16px;
- .title-text {
- width: 100%;
- height: 100%;
- float: left;
- font-size: 15px;
- font-family: PingFang SC;
- color: #333333;
- line-height: 18px;
- box-sizing: border-box;
- padding-left: 6px;
- border-left: 2px solid #52A63A;
- }
- }
- .coupon-row {
- width: calc(100% - 32px);
- height: 105px;
- float: left;
- margin: 0 16px 10px 16px;
- border-radius: 10px;
- background: #FFFFFF;
- box-shadow: 0px 0px 10px 0px rgba(103, 103, 103, 0.3);
- overflow: hidden;
- .coupon-left {
- width: 107px;
- height: 105px;
- box-sizing: border-box;
- padding-right: 10px;
- float: left;
- background-size: 107px 105px;
- background-position: center;
- background-repeat: no-repeat;
- background-image: url(@/static/images/couponHead.png);
- .coupon-left-price {
- width: 100%;
- height: 24px;
- float: left;
- margin: 28px 0 12px 0;
- font-size: 24px;
- font-family: PingFang SC;
- color: #FFFFFF;
- line-height: 24px;
- text-align: center;
- }
- .coupon-left-text {
- width: 100%;
- height: 20px;
- float: left;
- color: #FFFFFF;
- font-size: 12px;
- font-family: PingFang SC;
- line-height: 20px;
- text-align: center;
- }
- }
- .coupon-info {
- width: calc(100% - 115px);
- height: 100%;
- float: right;
- box-sizing: border-box;
- padding: 12px 0 12px 0;
- .coupon-text1 {
- width: 100%;
- height: 22px;
- float: right;
- font-size: 15px;
- font-family: PingFang SC;
- color: #333333;
- line-height: 22px;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .coupon-text2 {
- width: 100%;
- height: 18px;
- float: right;
- font-size: 13px;
- font-family: PingFang SC;
- color: #EB5F2F;
- line-height: 18px;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- }
- }
- /deep/.u-divider {
- background-color: transparent !important;
- }
- .form-handle {
- width: 100%;
- height: 60px;
- position: fixed;
- z-index: 10;
- padding: 10px 15px 20px 15px;
- box-sizing: border-box;
- bottom: 0;
- background-color: #FFFFFF;
- border-top: 1px solid #EEEEEE;
- .handle-custom {
- background-color: #51A539;
- /deep/button {
- background-color: #56a83a;
- }
- /deep/.u-btn--success--disabled {
- background-color: #74bd60 !important;
- }
- }
- }
- }
- </style>
|