123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- <template>
- <view>
- <u-navbar :placeholder="true" bgColor="#fff" :autoBack="true" :border="true" title="选择优惠券"></u-navbar>
- <view class="coupon-title">可用优惠券:{{ total }}</view>
- <view class="coupon-list">
- <u-radio-group v-model="radiovalue1" placement="column" @change="changeChechk()">
- <view class="flex coupon-list-item" v-for="(item,index) in list" :key="index" :style="{backgroundImage:`url(${ index == isActive ? backOn : backOff })`}">
- <view class="flex coupon-list-item-info">
- <view class="money">
- <!-- <view class="">¥<text>{{ item.discount / 100 }}</text></view> -->
- <view class="price flex">
- <text>{{ item.discount / 100 }}</text>
- <text>元</text>
- </view>
- </view>
- <view class="flex content">
- <view class=" title ells-one">{{ item.title }}</view>
- <view class="txt ells-one top">适用范围:{{ item.useAreaDesc || '-' }}</view>
- <view class="txt">
- 使用期限:{{ $parseTime(item.validStart, '{y}.{m}.{d}')}}-{{$parseTime(item.validEnd, '{y}.{m}.{d}')}}
- </view>
- </view>
- </view>
- <view class="uradio">
- <u-radio :customStyle="{ marginBottom: '8px' }" :name="item.id" activeColor="#E96737" size="24" @change="exclusive(index)">
- </u-radio>
- </view>
-
- </view>
- </u-radio-group>
- </view>
- <view class="flex empty" v-if="!list.length">
- <view class="center">
- <image class="center-img" src="https://mp-public-1310078123.cos.ap-shanghai.myqcloud.com/v2/nodata_1.png" mode=""></image>
- <view class="center-font">暂无优惠券</view>
- </view>
- <!-- <u-empty text="数据为空" mode="order" /> -->
- </view>
- <view class="footer-fixed">
- <view class="flex btn">
- <button type="default" @click="exchange">确认</button>
- </view>
- </view>
- </view>
- </template>
- <script>
- import env from '../../config/env.js'
- import $http from '@/utils/request.js'
- export default {
- data() {
- return {
- checked: false,
- actionIndex: 0,
- pageNum: 1,
- total: 0,
- list: [],
- listNum: '', //可用优惠券数量
- radiovalue1: '', //选中项的下标
- couponId: '', //选中项的id
- boxId: '',
- ticketId: '',
-
- isActive: undefined,
- backOn: "https://mp-public-1310078123.cos.ap-shanghai.myqcloud.com/v2/coupon_bkg2.png",
- backOff: "https://mp-public-1310078123.cos.ap-shanghai.myqcloud.com/v2/coupon_bkg1.png",
- };
- },
- onShow() {
- this.pageList()
- this.exclusive()
- },
- onLoad(opthios) {
- this.boxId = opthios.boxId
- if (opthios.ticketId) {
- this.ticketId = opthios.ticketId
- }
- if (opthios.couponId) {
- this.couponId = opthios.couponId
- this.radiovalue1 = opthios.couponId
- }
- },
- methods: {
- pageList() {
- this.list = []
- this.getList()
- },
- getList() {
- let _this = this
- uni.showLoading({
- title: '加载中'
- });
- $http.post(`/api/v1/mp/user/ticket/order/coupon/listPage?pageNum=${_this.pageNum}&pageSize=20`, {}).then(
- res => {
- uni.hideLoading();
- if (res.code == 0) {
- this.listNum = res.rows.length
- res.rows.forEach(item => {
- let useAreaDesc = JSON.parse(item.useArea)
- item.useAreaDesc = useAreaDesc.desc
- })
- _this.list = [..._this.list, ...res.rows]
- _this.total = res.total
- for (var i = 0; i < _this.list.length; i++) {
- if(_this.list[i].id == _this.couponId){
- _this.isActive = i
- }
- }
- }
- }).catch(() => {
- uni.hideLoading();
- })
- },
-
- exclusive(index) {
- this.isActive = index
- },
- // 点击切换事件
- changeChechk(e) {
- if (this.couponId == e) {
- this.radiovalue1 = -1
- this.isActive = -1
- this.couponId = []
- return
- } else {
- this.couponId = [e]
- return
- }
- },
- // 点击确认事件
- exchange() {
- let data = {
- userCouponIds: this.couponId,
- autoCoupon: 0,
- boxId: this.boxId,
- ticketId: this.ticketId,
- orderNum: 1
- }
- $http.post('/api/v1/mp/user/ticket/order/settle', data).then(res => {
- if (res.code == 0) {
- let pages = getCurrentPages()
- let page = pages[pages.length - 2]
- let payInfo = {
- ...res.data,
- picUrl: env.filePublic + res.data.picUrl.split(',')[0],
- couponDiscount: res.data && res.data.couponList && res.data.couponList.length &&
- res
- .data.couponList[0].discount,
- couponId: res.data && res.data.couponList && res.data.couponList.length && res.data
- .couponList[0].id,
- listNum: this.listNum
- }
- page.$vm.payInfo = payInfo
- uni.navigateBack({
- delta: 1
- })
- }
- })
- }
- },
- onReachBottom() {
- // 判断是否有数据
- if (this.total > this.pageNum * 20) {
- setTimeout(() => {
- ++this.pageNum
- this.getList()
- }, 500)
- } else {
- uni.$u.toast('已经到底了')
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .coupon {
-
- &-title {
- position: fixed;
- z-index: 10;
- width: 100%;
- padding: 24rpx 32rpx;
- background-color: #FFFFFF;
- }
- &-list {
- margin-top: 100rpx;
- padding: 0 20rpx 100rpx;
- &-item {
- justify-content: space-between;
- padding: 20rpx;
- // background-color: #FFFFFF;
- margin-bottom: 20rpx;
- background-size: 100%;
- &-info {
- flex: 1;
- justify-content: flex-start;
- height: 175rpx;
- image {
- width: 84rpx;
- height: 132rpx;
- margin-right: 20rpx;
- }
- .content {
- width: 445rpx;
- height: 150rpx;
- flex-direction: column;
- align-items: flex-start;
- justify-content: space-between;
- .txt {
- font-size: 24rpx;
- line-height: 24rpx;
- color: #999999;
- }
- }
- .content .title {
- font-size: 36rpx;
- color: #333;
- line-height: 40rpx;
- // font-weight: bold;
- }
- .money {
- width: 220rpx;
- height: 100%;
- margin:0 10rpx 0;
- .price {
- position: absolute;
- color: #fff;
- z-index: 0;
-
- text:first-child {
- line-height: 150rpx;
- font-size: 70rpx;
- padding-right: 20rpx;
- }
-
- text:last-child {
- font-size: 40rpx;
- }
- }
- }
- }
- .uradio {
- position: absolute;right: 40rpx;
- }
- .circle {
- width: 40rpx;
- height: 40rpx;
- border-radius: 50%;
- border: 1px solid;
- }
- .action {
- width: 30rpx;
- height: 30rpx;
- border-radius: 50%;
- background-color: $uni-bg-color;
- }
- }
- }
- }
- .empty {
- height: 60vh;
-
- .center {
- text-align: center;
-
- &-img {
- width: 228rpx;
- height: 320rpx;
- }
-
- &-font {
- font-size: 30rpx;
- font-weight: 400;
- color: #999999;
- margin-bottom: 250rpx;
- }
- }
- }
- .footer-fixed {
- position: fixed;
- bottom: var(--window-bottom);
- left: 0;
- right: 0;
- z-index: 11;
- box-shadow: 0 -4rpx 40rpx 0 rgba(151, 151, 151, 0.24);
- background: #fff;
- // 设置ios刘海屏底部横线安全区域
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- .btn {
- padding: 20rpx 0;
- /deep/ button {
- width: 441rpx;
- height: 88rpx;
- line-height: 88rpx;
- font-size: 36rpx;
- color: #fff;
- background-color: #F9822C;
- border: none;
- border-radius: 44rpx;
- }
- }
- }
- </style>
|