接入拼团订单50%

pull/36/head
owen 2024-01-10 23:12:11 +08:00
parent 07601aec09
commit f3659c7929
1 changed files with 50 additions and 59 deletions

View File

@ -13,34 +13,26 @@
<view v-if="state.pagination.total > 0"> <view v-if="state.pagination.total > 0">
<view <view
class="order-list-card-box bg-white ss-r-10 ss-m-t-14 ss-m-20" class="order-list-card-box bg-white ss-r-10 ss-m-t-14 ss-m-20"
v-for="order in state.pagination.data" v-for="order in state.pagination.list"
:key="order.id" :key="order.id"
> >
<view class="order-card-header ss-flex ss-col-center ss-row-between ss-p-x-20"> <view class="order-card-header ss-flex ss-col-center ss-row-between ss-p-x-20">
<view class="order-no">订单号{{ order.my.order.order_sn }}</view> <view class="order-no">订单号{{ order.no }}</view>
<view <view class="ss-font-26" :class="formatOrderColor(order)">
class="ss-font-26" {{ formatOrderStatus(order) }}
:class=" </view>
order.status === 'ing'
? 'warning-color'
: order.status === 'invalid'
? 'danger-color'
: 'success-color'
"
>{{ order.status_text }}</view
>
</view> </view>
<view class="border-bottom"> <view class="border-bottom" v-for="item in order.items" :key="item.id">
<s-goods-item <s-goods-item
:img="order.goods.image" :img="item.picUrl"
:title="order.goods.title" :title="item.spuName"
:price="order.goods.price[0]" :skuText="item.properties.map((property) => property.valueName).join(' ')"
priceColor="#E1212B" :price="item.price"
radius="20" :num="item.count"
> >
<template #groupon> <template #groupon>
<view class="ss-flex"> <view class="ss-flex">
<view class="sales-title"> {{ order.num }}人团 </view> <view class="sales-title"> {{ item.num }}人团 </view>
<!-- <view class="num-title ss-m-l-20"> 已拼{{ order.goods.sales }} </view> --> <!-- <view class="num-title ss-m-l-20"> 已拼{{ order.goods.sales }} </view> -->
</view> </view>
</template> </template>
@ -49,16 +41,16 @@
<view class="order-card-footer ss-flex ss-row-right ss-p-x-20"> <view class="order-card-footer ss-flex ss-row-right ss-p-x-20">
<button <button
class="detail-btn ss-reset-button" class="detail-btn ss-reset-button"
@tap="sheep.$router.go('/pages/order/detail', { id: order.my.order_id })" @tap="sheep.$router.go('/pages/order/detail', { id: order.id })"
> >
订单详情 订单详情
</button> </button>
<button <button
class="tool-btn ss-reset-button" class="tool-btn ss-reset-button"
:class="{ 'ui-BG-Main-Gradient': order.status === 'ing' }" :class="{ 'ui-BG-Main-Gradient': order.status === 0 }"
@tap="sheep.$router.go('/pages/activity/groupon/detail', { id: order.id })" @tap="sheep.$router.go('/pages/activity/groupon/detail', { id: order.id })"
> >
{{ order.status === 'ing' ? '邀请拼团' : '拼团详情' }} {{ order.status === 0 ? '邀请拼团' : '拼团详情' }}
</button> </button>
</view> </view>
</view> </view>
@ -69,7 +61,7 @@
:content-text="{ :content-text="{
contentdown: '上拉加载更多', contentdown: '上拉加载更多',
}" }"
@tap="loadmore" @tap="loadMore"
/> />
</s-layout> </s-layout>
</template> </template>
@ -79,15 +71,17 @@
import { onLoad, onReachBottom, onPullDownRefresh } from '@dcloudio/uni-app'; import { onLoad, onReachBottom, onPullDownRefresh } from '@dcloudio/uni-app';
import sheep from '@/sheep'; import sheep from '@/sheep';
import _ from 'lodash'; import _ from 'lodash';
import OrderApi from "@/sheep/api/trade/order";
import {formatOrderColor, formatOrderStatus} from "@/sheep/hooks/useGoods";
// //
const state = reactive({ const state = reactive({
currentTab: 0, currentTab: 0,
pagination: { pagination: {
data: [], list: [],
current_page: 1,
total: 1, total: 1,
last_page: 1, pageNo: 1,
pageSize: 1,
}, },
loadStatus: '', loadStatus: '',
deleteOrderId: 0, deleteOrderId: 0,
@ -96,19 +90,18 @@
const tabMaps = [ const tabMaps = [
{ {
name: '全部', name: '全部',
value: 'all',
}, },
{ {
name: '进行中', name: '进行中',
value: 'ing', value: 0,
}, },
{ {
name: '拼团成功', name: '拼团成功',
value: 'finish', value: 1,
}, },
{ {
name: '拼团失败', name: '拼团失败',
value: 'invalid', value: 2,
}, },
]; ];
@ -116,9 +109,9 @@
function onTabsChange(e) { function onTabsChange(e) {
state.pagination = { state.pagination = {
data: [], data: [],
current_page: 1, pageNo: 1,
total: 1, total: 1,
last_page: 1, pageSize: 5,
}; };
state.currentTab = e.index; state.currentTab = e.index;
getGrouponList(); getGrouponList();
@ -149,8 +142,8 @@
async function onConfirm(orderId) { async function onConfirm(orderId) {
const { error, data } = await sheep.$api.order.confirm(orderId); const { error, data } = await sheep.$api.order.confirm(orderId);
if (error === 0) { if (error === 0) {
let index = state.pagination.data.findIndex((order) => order.id === orderId); let index = state.pagination.list.findIndex((order) => order.id === orderId);
state.pagination.data[index] = data; state.pagination.list[index] = data;
} }
} }
@ -158,33 +151,30 @@
async function onCancel(orderId) { async function onCancel(orderId) {
const { error, data } = await sheep.$api.order.cancel(orderId); const { error, data } = await sheep.$api.order.cancel(orderId);
if (error === 0) { if (error === 0) {
let index = state.pagination.data.findIndex((order) => order.id === orderId); let index = state.pagination.list.findIndex((order) => order.id === orderId);
state.pagination.data[index] = data; state.pagination.list[index] = data;
} }
} }
// //
async function getGrouponList(page = 1, list_rows = 5) { async function getGrouponList() {
state.loadStatus = 'loading'; state.loadStatus = 'loading';
let res = await sheep.$api.activity.myGroupon({ // todo:
type: tabMaps[state.currentTab].value, const { code, data } = await OrderApi.getOrderPage({
pageNo: state.pagination.pageNo,
pageSize: state.pagination.pageSize,
status: tabMaps[state.currentTab].value,
commentStatus: tabMaps[state.currentTab].value === 30 ? false : null
}); });
if (res.error === 0) { if (code !== 0) {
if (page >= 2) { return;
let orderList = _.concat(state.pagination.data, res.data.data); }
state.pagination = { state.pagination.list = _.concat(state.pagination.list, data.list)
...res.data, state.pagination.total = data.total;
data: orderList, if (state.pagination.list.length < state.pagination.total) {
}; state.loadStatus = 'more';
} else { } else {
state.pagination = res.data; state.loadStatus = 'noMore';
}
if (state.pagination.current_page < state.pagination.last_page) {
state.loadStatus = 'more';
} else {
state.loadStatus = 'noMore';
}
} }
} }
@ -196,15 +186,16 @@
}); });
// //
function loadmore() { function loadMore() {
if (state.loadStatus !== 'noMore') { if (state.loadStatus !== 'noMore') {
getGrouponList(state.pagination.current_page + 1); state.pagination.pageNo++;
getGrouponList();
} }
} }
// //
onReachBottom(() => { onReachBottom(() => {
loadmore(); loadMore();
}); });
// //
onPullDownRefresh(() => { onPullDownRefresh(() => {