123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407 |
- <template>
- <view>
- <u-navbar :placeholder="true" bgColor="#fff" :autoBack="true" :border="true" title="我的奖品库"></u-navbar>
- <!-- 奖品选择 -->
- <view class="prize-state">
- <u-tabs @change="changeTab" :scrollable="false" :list="stateArr" lineWidth="40" lineHeight="1"
- lineColor="#D70909" :activeStyle="{
- color: '#D70909',
- transform: 'scale(1)'
- }" :inactiveStyle="{
- color: '#333',
- transform: 'scale(1)'
- }" itemStyle="padding-left: 25px; padding-right: 25px; height: 44px;">
- </u-tabs>
- </view>
- <!-- 实物商品 -->
- <view class="prize-goods" v-if="state == 0">
- <view class="prize-goods-list">
- <view class="flex prize-goods-list-item" v-for="(item, index) in list" :key="index">
- <view class="flex checkbox">
- <u-checkbox-group>
- <u-checkbox size="24" :value="item.checked" shape="circle" :checked="item.checked"
- activeColor="#E96737" @change="changeChecked($event, item)"></u-checkbox>
- </u-checkbox-group>
- </view>
- <view class="flex info">
- <image :src="item.picUrl" mode="aspectFill"></image>
- <view class="flex desc">
- <view class="ells content">{{ item.title }}</view>
- <view class="sku" v-if="item.properties">规格:{{ item.properties }}</view>
- <view class="">数量:{{ item.goodsNum }}</view>
- </view>
- </view>
- </view>
- </view>
- <view class="flex empty" v-if="!list.length && !loading">
- <u-empty text="数据为空" mode="order" />
- </view>
- </view>
- <!-- 优惠券 -->
- <view class="prize-coupon" v-else>
- <view class="prize-coupon-list">
- <!-- <navigator :url="`/pages/prize/detail?info=${ JSON.stringify(item) }`" class="flex prize-coupon-list-item" hover-class="navigator-hover" v-for="(item, index) in list" :key="index">
- <image :src="item.picUrl" mode="aspectFill"></image>
- <view class="flex info">
- <view class="flex desc">
- <view class="title">{{ item.title }}</view>
- <view class="txt">使用期限:{{ $parseTime(item.validStart, '{y}.{m}.{d}') }}-{{ $parseTime(item.validEnd, '{y}.{m}.{d}') }}</view>
- <view class="txt">使用范围:{{ item.useAreaDesc }}</view>
- </view>
- <view class="flex btn">
- <view class="amt"><text>¥</text>{{ item.discount / 100 }}</view>
- <view class="action">立即使用</view>
- </view>
- </view>
- </navigator> -->
- <navigator :url="`/pages/prize/detail?info=${ JSON.stringify(item) }`" class="prize-coupon-list-item"
- hover-class="navigator-hover" v-for="(item, index) in list" :key="index">
- <image src="../../static/icon/coupon_bg.png" mode=""></image>
- <view class="info">
- <view class="info-item">
- <text>使用期限:</text>
- <text>{{ $parseTime(item.validStart, '{y}.{m}.{d}') }}-{{ $parseTime(item.validEnd, '{y}.{m}.{d}') }}</text>
- </view>
- <view class="info-item">
- <text>使用范围:</text>
- <text>{{ item.useAreaDesc || '-' }}</text>
- </view>
- </view>
- <view class="flex price-title">
- <view class="price"><text>¥</text>{{ item.discount / 100 }}</view>
- <view class="title">{{ item.title }}</view>
- </view>
- </navigator>
- </view>
- <view class="flex empty" v-if="!list.length && !loading">
- <u-empty text="数据为空" mode="order" />
- </view>
- </view>
- <view class="prize-action">
- <!-- 实物商品提货 -->
- <view class="flex prize-action-goods" v-if="state == 0">
- <view class="flex checkbox">
- <view class="all">全选</view>
- <u-checkbox-group>
- <u-checkbox v-model="checkedAll" shape="circle" size="24" :checked="checkedAll"
- activeColor="#E96737" @change="changeCheckedAll($event)"></u-checkbox>
- </u-checkbox-group>
- </view>
- <view class="btn" @click="toSettlement">立即提货</view>
- </view>
- <!-- 优惠券使用记录 -->
- <view class="flex prize-action-coupon" @click="toCoupon" v-else>
- <view class="title">优惠券使用记录</view>
- <u-icon name="arrow-right" size="15" color="#333"></u-icon>
- </view>
- </view>
- </view>
- </template>
- <script>
- import env from '../../config/env.js'
- import $http from '@/utils/request.js'
- export default {
- data() {
- return {
- loading: false,
- stateArr: [{
- name: '实物商品'
- }, {
- name: '优惠券',
- }],
- state: 0,
- checkedAll: false,
- pageNum: 1,
- total: 0,
- list: [],
- };
- },
- onShow() {
- this.pageList()
- },
- methods: {
- getList() {
- let _this = this
- let url = _this.state == 0 ? '/api/v1/mp/user/mine/prize/list' : '/api/v1/mp/user/mine/coupon/list'
- let data = _this.state == 0 ? {} : {
- status: 1
- }
- uni.showLoading({
- title: '加载中'
- });
- this.loading = true
- this.checkedAll = false
- $http.post(`${ url }?pageNum=${_this.pageNum}&pageSize=20`, data).then(res => {
- uni.hideLoading();
- this.loading = false
- if (res.code == 0) {
- res.rows.forEach(item => {
- let picUrlArr = item.picUrl.split(',')
- item.picUrl = env.filePublic + picUrlArr[0]
- if (_this.state == 0) {
- item.checked = false
- }
- })
- _this.total = res.total
- _this.list = _this.list.concat(res.rows)
- }
- }).catch(() => {
- uni.hideLoading();
- this.loading = false
- })
- },
- pageList() {
- this.pageNum = 1
- this.list = []
- this.getList()
- },
- // 切换奖品
- changeTab(e) {
- if (e.index == 0) {
- this.state = 0
- } else if (e.index == 1) {
- this.state = 1
- }
- this.pageList()
- this.checkedAll = false
- },
- changeChecked(e, item) {
- this.$set(item, 'checked', e)
- let flag = this.list.every(item => item.checked == true)
- this.checkedAll = flag
- this.$forceUpdate()
- },
- changeCheckedAll(e) {
- this.checkedAll = e
- this.list.forEach(item => {
- item.checked = e
- })
- this.$forceUpdate()
- },
- // 查看优惠券使用记录
- toCoupon() {
- uni.navigateTo({
- url: '/pages/prize/coupon'
- })
- },
- // 立即提货
- toSettlement() {
- let arr = []
- this.list.forEach(item => {
- if (item.checked) {
- arr.push(item)
- }
- })
- if (!arr.length) {
- uni.$u.toast('请选择商品');
- return
- }
- uni.showLoading({
- title: '提货中'
- });
- let ids = JSON.stringify(arr.map(item => item.storageId))
- uni.hideLoading();
- uni.navigateTo({
- url: `/pages/order/settlement?ids=${ ids }`
- })
- },
- },
- onReachBottom() {
- // 判断是否有数据
- if (this.total > this.pageNum * 20) {
- setTimeout(() => {
- ++this.pageNum
- this.getList()
- }, 500)
- } else {
- uni.$u.toast('没有更多数据了')
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .empty {
- height: 60vh;
- }
- .prize-state {
- position: fixed;
- background-color: #FFFFFF;
- width: 100%;
- padding-bottom: 16rpx;
- z-index: 10;
- box-shadow: 0 5rpx 5rpx #ececec;
- }
- .prize-goods {
- margin-top: 90rpx;
- padding: 40rpx 20rpx 200rpx;
- &-list {
- &-item {
- justify-content: space-between;
- padding: 36rpx 16rpx;
- background-color: #fff;
- border-radius: 10rpx;
- margin-bottom: 30rpx;
- .checkbox {}
- .info {
- flex: 1;
- justify-content: flex-start;
- }
- image {
- width: 200rpx;
- height: 200rpx;
- }
- .desc {
- height: 200rpx;
- padding-left: 22rpx;
- flex: 1;
- font-size: 30rpx;
- flex-direction: column;
- align-items: flex-start;
- justify-content: space-between;
- }
- .content {
- line-height: 40rpx;
- font-weight: bold;
- }
- .sku {
- color: #848484;
- }
- .num {
- width: 100%;
- color: #8C8C8C;
- justify-content: space-between;
- }
- }
- &-item:last-child {
- margin-bottom: 0;
- }
- }
- }
- .prize-coupon {
- margin-top: 90rpx;
- padding: 40rpx 20rpx 150rpx;
- &-list {
- &-item {
- position: relative;
- background-color: #FFFFFF;
- margin-bottom: 20rpx;
- border-radius: 10rpx;
- image {
- width: 100%;
- height: 156rpx;
- margin-bottom: 24rpx;
- }
- .info {
- padding-left: 40rpx;
- padding-bottom: 8rpx;
- .info-item {
- line-height: 40rpx;
- color: #333333;
- margin-bottom: 12rpx;
- }
- }
- .price-title {
- justify-content: flex-start;
- position: absolute;
- top: 0;
- width: 100%;
- padding: 36rpx 0 0 40rpx;
- .price {
- color: #FFFFFF;
- font-size: 60rpx;
- margin-right: 20rpx;
- text {
- font-size: 40rpx;
- }
- }
- .title {
- color: #FFFFFF;
- font-size: 48rpx;
- }
- }
- }
- &-item:last-child {
- margin-bottom: 0;
- }
- }
- }
- .prize-action {
- position: fixed;
- bottom: var(--window-bottom);
- left: 0;
- right: 0;
- z-index: 10;
- box-shadow: 0 -4rpx 10rpx 0 rgba(151, 151, 151, 0.24);
- background: #fff;
- width: 100%;
- // 设置ios刘海屏底部横线安全区域
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- &-goods {
- justify-content: space-between;
- padding: 20rpx 40rpx;
- .all {
- margin-right: 10rpx;
- }
- .btn {
- width: 280rpx;
- height: 90rpx;
- font-size: 36rpx;
- line-height: 90rpx;
- border-radius: 10rpx;
- background-color: rgba(235, 112, 9, 100);
- color: rgba(255, 255, 255, 100);
- text-align: center;
- }
- }
- &-coupon {
- padding: 30rpx 40rpx;
- .title {
- margin-right: 20rpx;
- line-height: 40rpx;
- }
- }
- }
- </style>
|