123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- <template>
- <view class="order">
- <view class="tab-box">
- <view class="tab" :class="[query.orderType == null ? 'active' : '']" @click="handleTab(null)">
- 全部
- </view>
- <!-- <view class="tab" :class="[query.orderType == 'USED'?'active':'']" @click="handleTab('USED')">
- 已使用
- </view> -->
- <view class="tab" :class="[query.orderType == 'WAIT_PAYMENT' ? 'active' : '']" @click="handleTab('WAIT_PAYMENT')">
- 待付款
- </view>
- <view class="tab" :class="[query.orderType == 'WAIT_USE' ? 'active' : '']" @click="handleTab('WAIT_USE')">
- 待使用
- </view>
- <view class="tab" :class="[query.orderType == 'APPLY_REFUND' ? 'active' : '']" @click="handleTab('APPLY_REFUND')">
- 退款
- </view>
- </view>
- <u-empty v-if="!list.length && status == 'noMore'" mode="order" iconSize="200rpx" textSize="28rpx">
- </u-empty>
- <zs-list mt="0" @load="loadMore" :status="status">
- <view class="order-item" v-for="(item, index) in list" :key="index" @click="jump(item)">
- <view class="top-box">
- <view class="label">
- {{ item.shopInfo.shopName }}
- </view>
- <view class="status">
- {{ item.goodsModelList[0].goodsState | filterType }}
- </view>
- </view>
- <view class="order-box">
- <zs-img radius="full"
- :src="item.goodsModelList[0].goodsInfo.goodsPath || item.goodsModelList[0].goodsInfo.activityCover"
- width="164rpx" height="164rpx"></zs-img>
- <view class="info">
- <view class="title">
- {{ item.goodsModelList[0].goodsInfo.goodsName || item.goodsModelList[0].goodsInfo.activityName }}
- </view>
- <view class="time">
- {{ $u.timeFormat(item.createTime, 'yyyy-mm-dd hh:MM:ss') }}
- </view>
- <view class="price">
- ¥{{ item.payAmount }}
- </view>
- </view>
- </view>
- </view>
- </zs-list>
- </view>
- </template>
- <script>
- import { getOrderList } from '@/api/order.js'
- import { getActivityDetail } from '@/api/activity.js'
- export default {
- data() {
- return {
- status: 'more',
- loading: false,
- query: {
- orderType: null,
- page: 0,
- size: 10,
- channel:"GuiDa",
- userId: JSON.parse(uni.getStorageSync('userInfo')).userId
- },
- activity: null,
- total: 0,
- list: []
- }
- },
- filters: {
- filterType: function (val) {
- if (val == 'APPLY_REFUND') {
- return '申请退款'
- } else if (val == 'CLOSE') {
- return '关闭订单'
- } else if (val == 'REFUNDED') {
- return '已退款'
- } else if (val == 'REFUSAL_REFUND') {
- return '拒绝退款'
- } else if (val == 'USED') {
- return '已使用'
- } else if (val == 'WAIT_PAYMENT') {
- return '待付款'
- } else if (val == 'WAIT_USE') {
- return '待使用'
- }
- }
- },
- methods: {
- handleTab(val) {
- this.query.orderType = val
- this.query.page = 0
- this.list = []
- this.getOrderList()
- },
- loadMore() {
- this.getOrderList()
- },
- jump(item) {
- // 如果是活动则跳转到活动支付页
- if (item.goodsModelList[0].goodsInfo.hasOwnProperty('activityEnable')) {
- const enable = item.goodsModelList[0].goodsInfo.activityEnable
- if (enable) {
- uni.showLoading({
- title: '获取信息中...'
- })
- getActivityDetail({
- id: item.goodsModelList[0].goodsInfo.id
- }).then(res => {
- this.activity = res.content
- this.activity.activityDetail = res.content.activityDetail.replace(/<img/gi, '<img class="img_class" ')
- let { activityStartTime, activityEndTime, limited, activityName, id, price, shopId } = this.activity
- let obj = {
- activityStartTime,
- activityEndTime,
- limited,
- activityName,
- id,
- price,
- shopId
- }
- uni.hideLoading()
- uni.setStorageSync('activity', JSON.stringify(obj))
- // uni.navigateTo({
- // url: '/signUp/makeOut?id=' + item.activityId
- // })
- uni.redirectTo({
- url: "/signUp/orderDetail?id=" + item.orderNo,
- success() {
- // this.loading = false;
- uni.hideLoading();
- },
- });
- })
- } else {
- uni.showToast({
- title: '活动已结束',
- icon: 'none'
- })
- }
- return
- } else {
- uni.setStorageSync('order', JSON.stringify(item))
- uni.navigateTo({
- url: './detail?id=' + item.orderNo
- })
- }
- },
- getOrderList() {
- this.status = 'loading'
- getOrderList(this.query).then(res => {
- if (res.state == 'Success') {
- this.total = res.content.totalElements
- this.list = this.list.concat(res.content.content)
- this.list.length >= this.total ? this.status = 'noMore' : this.status = 'more'
- this.query.page++
- uni.stopPullDownRefresh()
- }
- })
- }
- },
- onPullDownRefresh() {
- this.query.page = 0
- this.list = []
- this.status = 'more'
- this.getOrderList()
- },
- onLoad(option) {
- this.query.orderType = option.type || null
- }
- }
- </script>
- <style lang="scss">
- .order {
- background: #efefef;
- padding: 90rpx 30rpx 0;
- min-height: 100vh;
- .tab-box {
- display: flex;
- position: fixed;
- width: 750rpx;
- height: 70rpx;
- left: 0%;
- top: 0%;
- z-index: 9;
- background: #fff;
- .tab {
- flex: 1;
- text-align: center;
- padding: 15rpx 0;
- font-size: 28rpx;
- color: #999999;
- }
- .tab.active {
- font-size: 32rpx;
- color: #222222;
- position: relative;
- &::after {
- content: '';
- width: 40rpx;
- height: 8rpx;
- box-shadow: inset 0rpx 6rpx 12rpx 2rpx rgba(255, 255, 255, 0.16);
- border-radius: 46rpx 46rpx 46rpx 46rpx;
- background: $uni-color-primary;
- position: absolute;
- bottom: 0%;
- left: 50%;
- transform: translateX(-50%);
- }
- }
- }
- .zs-list {
- .order-item {
- background-color: #fff;
- border-radius: 8px;
- margin-bottom: 20rpx;
- .top-box {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20rpx;
- border-bottom: 2rpx solid #F3F3F3;
- .label {
- font-weight: bold;
- color: #222222;
- font-size: 32rpx;
- width: 500rpx;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .status {
- font-size: 28rpx;
- color: #999999;
- }
- }
- .order-box {
- padding: 25rpx;
- display: flex;
- .icon {
- width: 164rpx;
- height: 164rpx;
- border-radius: 16rpx;
- background-color: #999;
- }
- .info {
- margin-left: 25rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .title {
- color: #0F0F0F;
- font-size: 28rpx;
- }
- .time {
- font-size: 26rpx;
- color: #999999;
- }
- .price {
- font-weight: bold;
- color: #181818;
- }
- }
- }
- }
- }
- }
- </style>
|