2025-03-20 08:46:07 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<view class="order_warp">
|
|
|
|
|
|
<view class="order_header">
|
|
|
|
|
|
<up-image src="/static/common/left.png" width="20" height="20" bgColor="#f1f6ff00" @click="jumpLeft"></up-image>
|
|
|
|
|
|
<up-search shape="round" bgColor="#FFFFFFFF" :showAction="false" @search="searchFun"></up-search>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="order_type_title">
|
|
|
|
|
|
<view
|
2025-03-23 20:36:06 +08:00
|
|
|
|
:class="form.type === item.id ? 'order_type_title_item order_type_title_item_sel':'order_type_title_item'"
|
2025-05-07 09:54:33 +08:00
|
|
|
|
v-for="(item,index) in orderTypeList"
|
2025-03-20 08:46:07 +08:00
|
|
|
|
@click="checkType(item)"
|
2025-05-07 09:54:33 +08:00
|
|
|
|
:key="index"
|
2025-03-20 08:46:07 +08:00
|
|
|
|
>
|
|
|
|
|
|
{{item.title}}
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-05-07 09:54:33 +08:00
|
|
|
|
<scroll-view scroll-y="true" @scrolltolower="loadMore" style="height: calc(100vh - 300rpx);">
|
2025-03-20 08:46:07 +08:00
|
|
|
|
<view v-if="orderList && orderList.length!==0" class="order_list_warp">
|
|
|
|
|
|
<view class="order_item" v-for="item in orderList" :key="item.id">
|
|
|
|
|
|
<!-- 头部 -->
|
|
|
|
|
|
<view class="order_item_header">
|
|
|
|
|
|
<view class="order_item_header_left">
|
2025-05-07 09:54:33 +08:00
|
|
|
|
<up-image :src="item.shopLogo" width="22" height="22" bgColor="#f1f6ff00" shape="circle"></up-image>
|
2025-03-23 20:36:06 +08:00
|
|
|
|
<view class="order_product_title">{{item.shopName}}</view>
|
2025-03-20 08:46:07 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<!-- 除开待付款 -->
|
|
|
|
|
|
<view
|
2025-03-23 20:36:06 +08:00
|
|
|
|
v-if="item.status !== ORDER_TYPE.UNPAID"
|
2025-03-20 08:46:07 +08:00
|
|
|
|
class="order_item_header_right"
|
|
|
|
|
|
:style="{'color': ORDER_STATUS_CSS[item.status]}">
|
|
|
|
|
|
{{getValue(ORDER_STATUS,item.status)}}
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<!-- 待付款 -->
|
|
|
|
|
|
<view v-else class="order_item_header_right order_right_due">
|
|
|
|
|
|
<view class="order_right_due_msg">等待付款</view>
|
2025-05-07 09:54:33 +08:00
|
|
|
|
<view class="order_right_due_time">{{formatDate1(item.expireTime)}}前</view>
|
2025-03-20 08:46:07 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<!-- 产品详情 -->
|
|
|
|
|
|
<view class="order_item_content">
|
2025-05-07 09:54:33 +08:00
|
|
|
|
<view v-for="pItem in item.items" :key="pItem.id" >
|
|
|
|
|
|
<view class="content_item" @click="jumpOrderInfo(item)">
|
|
|
|
|
|
<up-image :src="pItem.mainGraph" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
|
|
|
|
|
<view class="content_info">
|
|
|
|
|
|
<view class="content_info_title">{{pItem.title}}</view>
|
|
|
|
|
|
<view class="content_info_tag">{{pItem.goodsSpece}}</view>
|
|
|
|
|
|
<!-- <view>
|
|
|
|
|
|
<text class="content_info_description" v-for="dItem in pItem.description">
|
|
|
|
|
|
{{dItem}}
|
|
|
|
|
|
</text>
|
|
|
|
|
|
</view> -->
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="content_right">
|
|
|
|
|
|
<view class="content_right_total">¥{{pItem.goodsAmount}}</view>
|
|
|
|
|
|
<view class="content_right_quantity">x{{pItem.buyNum}}</view>
|
|
|
|
|
|
</view>
|
2025-03-20 08:46:07 +08:00
|
|
|
|
</view>
|
2025-05-07 09:54:33 +08:00
|
|
|
|
<view class="content_item_yd" v-if="pItem.expressNo">
|
|
|
|
|
|
<view>运单号:<text v-if="pItem.expressName">({{pItem.expressName}})</text>{{pItem.expressNo}}</view>
|
|
|
|
|
|
<view style="margin-left:10rpx;">
|
|
|
|
|
|
<up-image src="/static/common/copy.png" width="14" height="14" bgColor="#f1f6ff00" @click="copyData(pItem.expressNo)"></up-image>
|
|
|
|
|
|
</view>
|
2025-03-20 08:46:07 +08:00
|
|
|
|
</view>
|
2025-05-07 09:54:33 +08:00
|
|
|
|
|
2025-03-20 08:46:07 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<!-- 汇总 -->
|
|
|
|
|
|
<view class="order_item_collect">
|
2025-05-07 09:54:33 +08:00
|
|
|
|
<view class="collect_msg collect_msg_s" v-if="this.form.type === MINE_ORDER_TYPE.NOT_RECEIVE">
|
|
|
|
|
|
<view class="content_item_yd_msg">(快递动态跟进请复制单号至[快递100官网] 查询)</view>
|
|
|
|
|
|
<view>共{{item.buyNum}}件,合计¥{{item.sumAmount}}</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="collect_msg" v-else>
|
|
|
|
|
|
共{{item.buyNum}}件,合计¥{{item.sumAmount}}
|
|
|
|
|
|
</view>
|
2025-03-20 08:46:07 +08:00
|
|
|
|
<view class="collect_operate">
|
2025-05-07 09:54:33 +08:00
|
|
|
|
<!-- <view class="operate_comm operate_but_1" v-if="item.status === ORDER_TYPE.UNSHIPPED" @click="checkCancel(true)">取消订单</view> -->
|
|
|
|
|
|
<view class="operate_comm operate_but_2" v-if="item.status === ORDER_TYPE.UNPAID" @click="jumpOrderInfo(item)">去付款</view>
|
2025-03-23 20:36:06 +08:00
|
|
|
|
<!-- <view class="operate_comm operate_but_1" v-if="item.status === ORDER_TYPE.COMPLETED">申请退款</view> -->
|
2025-05-07 09:54:33 +08:00
|
|
|
|
<view class="operate_comm operate_but_2" v-if="item.status === ORDER_TYPE.NOT_RECEIVE" @click="confirmReceiptOk(item)">确认收货</view>
|
2025-03-23 20:36:06 +08:00
|
|
|
|
<!-- <view class="operate_comm operate_but_3" v-if="item.status === ORDER_TYPE.UNSHIPPED">提醒发货</view> -->
|
2025-05-23 18:03:45 +08:00
|
|
|
|
<view class="operate_comm operate_but_1" v-if="[ORDER_TYPE.NOT_RECEIVE,ORDER_TYPE.UNSHIPPED].includes(item.status)" @click="afterShow=true;">申请售后</view>
|
2025-03-23 20:36:06 +08:00
|
|
|
|
<!-- <view class="operate_comm operate_but_1" v-if="item.status === ORDER_TYPE.AFTER_SALE">查看售后</view> -->
|
|
|
|
|
|
<!-- <view class="operate_comm operate_but_1" v-if="[ORDER_TYPE.COMPLETED].includes(item.status)">删除记录</view> -->
|
|
|
|
|
|
<!-- <view class="operate_comm operate_but_3" v-if="[ORDER_TYPE.COMPLETED,ORDER_TYPE.CANCELED].includes(item.status)">再次购买</view> -->
|
2025-03-20 08:46:07 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view v-else class="not_order_warp">
|
|
|
|
|
|
<up-image src="/static/common/not_order.png" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
|
|
|
|
|
<view class="not_order_msg_warp">暂无相关订单</view>
|
|
|
|
|
|
</view>
|
2025-05-07 09:54:33 +08:00
|
|
|
|
<view v-if="loading" style="text-align: center;">加载中...</view>
|
|
|
|
|
|
</scroll-view>
|
2025-03-20 08:46:07 +08:00
|
|
|
|
<up-popup v-model:show="cancelShow" :round="10" :closeOnClickOverlay="false">
|
|
|
|
|
|
<view class="cancel_show_warp">
|
|
|
|
|
|
<view class="cancel_show_title_warp">
|
|
|
|
|
|
<view>取消订单</view>
|
|
|
|
|
|
<view class="cancel_show_title_icon" @click="checkCancel(false)"><up-icon name="close-circle" color="#9e9e9e" size="20"></up-icon></view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="cancel_show_msg_warp">
|
|
|
|
|
|
<view>温馨提示:</view>
|
|
|
|
|
|
<view>1.限时特价、预约资格等购买优惠可能一并取消</view>
|
|
|
|
|
|
<view>2.订单一旦取消,支付优惠一并取消,可能无法恢复</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="cancel_show_reason_warp">
|
|
|
|
|
|
<view class="reason_title">请选择取消订单的原因(必选):</view>
|
|
|
|
|
|
<up-radio-group
|
|
|
|
|
|
v-model="cancelForm.reason"
|
|
|
|
|
|
placement="column"
|
|
|
|
|
|
>
|
|
|
|
|
|
<up-radio
|
|
|
|
|
|
:customStyle="{marginBottom: '8px'}"
|
|
|
|
|
|
v-for="(item, index) in reasonList"
|
|
|
|
|
|
:key="index"
|
|
|
|
|
|
:label="item.name"
|
|
|
|
|
|
:name="item.name"
|
|
|
|
|
|
>
|
|
|
|
|
|
</up-radio>
|
|
|
|
|
|
</up-radio-group>
|
|
|
|
|
|
<up-textarea v-model="cancelForm.remark"></up-textarea>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="but_border_warp"></view>
|
|
|
|
|
|
<view class="cancel_show_but">
|
|
|
|
|
|
<view class="add_but" @click="cancelOk">提交</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</up-popup>
|
|
|
|
|
|
<up-toast ref="uToastRef"></up-toast>
|
2025-05-07 09:54:33 +08:00
|
|
|
|
<!-- 暂未开放 -->
|
|
|
|
|
|
<up-modal :show="openShow" :showConfirmButton = "false">
|
|
|
|
|
|
<view class="slot-content">
|
|
|
|
|
|
<view class="close_warp" @click="openShow=false;">
|
|
|
|
|
|
<up-image src="/static/common/close.png" width="20" height="20" bgColor="#f1f6ff00"></up-image>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="content_">
|
|
|
|
|
|
<view class="content_1">温馨提示</view>
|
|
|
|
|
|
<view class="content_2">暂未开放</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="but_">
|
|
|
|
|
|
<view class="but_copy" @click="openShow=false;">确定</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</up-modal>
|
2025-05-23 18:03:45 +08:00
|
|
|
|
<!-- 申请售后 -->
|
|
|
|
|
|
<up-modal :show="afterShow" :showConfirmButton = "false">
|
|
|
|
|
|
<view class="slot-content">
|
|
|
|
|
|
<view class="close_warp" @click="afterShow=false;">
|
|
|
|
|
|
<up-image src="/static/common/close.png" width="20" height="20" bgColor="#f1f6ff00"></up-image>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="content_">
|
|
|
|
|
|
<view class="content_1">售后联系方式</view>
|
|
|
|
|
|
<view class="content_2">如遇退/换货等问题,请联系客服处理</view>
|
|
|
|
|
|
<view class="content_3">
|
|
|
|
|
|
<view style="margin-left: 20rpx;">
|
|
|
|
|
|
<up-image src="/static/common/kf_dh.png" width="40" height="40" bgColor="#f1f6ff00"></up-image>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="content_info">
|
|
|
|
|
|
<view class="content_info_title">客服电话</view>
|
|
|
|
|
|
<view class="content_info_mobile">
|
|
|
|
|
|
139 2278 6999
|
|
|
|
|
|
<view style="margin-left: 20rpx;">
|
|
|
|
|
|
<up-image src="/static/common/copy_c.png" width="14" height="14" bgColor="#f1f6ff00" @click="copyMobile(13922786999)"></up-image>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="content_3">
|
|
|
|
|
|
<view style="margin-left: 20rpx;">
|
|
|
|
|
|
<up-image src="/static/common/kf_wx.png" width="40" height="40" bgColor="#f1f6ff00"></up-image>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="content_info">
|
|
|
|
|
|
<view class="content_info_title">客服微信</view>
|
|
|
|
|
|
<view class="content_info_mobile">
|
|
|
|
|
|
139 2278 6999
|
|
|
|
|
|
<view style="margin-left: 20rpx;">
|
|
|
|
|
|
<up-image src="/static/common/copy_c.png" width="14" height="14" bgColor="#f1f6ff00" @click="copyMobile(13922786999)"></up-image>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="but_">
|
|
|
|
|
|
<!-- <view class="but_copy" @click="copyMobile('13922786999')">复制号码</view> -->
|
|
|
|
|
|
<view class="but_close" @click="afterShow=false;">确定</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</up-modal>
|
2025-03-20 08:46:07 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-05-07 09:54:33 +08:00
|
|
|
|
import { MINE_ORDER_TYPE,ORDER_TYPE,ORDER_STATUS,getValue } from '@/utils/enumUtils.js';
|
2025-03-20 08:46:07 +08:00
|
|
|
|
import { ORDER_STATUS_CSS } from '@/utils/enumCssUtils.js';
|
2025-05-07 09:54:33 +08:00
|
|
|
|
import { getOrderList,confirmReceipt } from '@/api/order.js';
|
|
|
|
|
|
import dayjs from 'dayjs';
|
|
|
|
|
|
import { formatDate1,copyData } from '@/utils/index.js'
|
2025-03-20 08:46:07 +08:00
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
computed: {
|
2025-05-07 09:54:33 +08:00
|
|
|
|
MINE_ORDER_TYPE() {
|
|
|
|
|
|
return MINE_ORDER_TYPE;
|
2025-03-20 08:46:07 +08:00
|
|
|
|
},
|
|
|
|
|
|
ORDER_STATUS() {
|
2025-05-07 09:54:33 +08:00
|
|
|
|
return ORDER_STATUS;
|
2025-03-20 08:46:07 +08:00
|
|
|
|
},
|
|
|
|
|
|
ORDER_STATUS_CSS() {
|
2025-05-07 09:54:33 +08:00
|
|
|
|
return ORDER_STATUS_CSS;
|
|
|
|
|
|
},
|
|
|
|
|
|
ORDER_TYPE(){
|
|
|
|
|
|
return ORDER_TYPE;
|
|
|
|
|
|
}
|
2025-03-20 08:46:07 +08:00
|
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
orderTypeList:[
|
|
|
|
|
|
{
|
2025-05-07 09:54:33 +08:00
|
|
|
|
id:MINE_ORDER_TYPE.UNPAID,
|
2025-03-20 08:46:07 +08:00
|
|
|
|
title:"待支付",
|
|
|
|
|
|
},{
|
2025-05-07 09:54:33 +08:00
|
|
|
|
id:MINE_ORDER_TYPE.UNSHIPPED,
|
2025-03-20 08:46:07 +08:00
|
|
|
|
title:"待发货",
|
|
|
|
|
|
},{
|
2025-05-07 09:54:33 +08:00
|
|
|
|
id:MINE_ORDER_TYPE.NOT_RECEIVE,
|
2025-03-20 08:46:07 +08:00
|
|
|
|
title:"待收货",
|
|
|
|
|
|
},{
|
2025-05-07 09:54:33 +08:00
|
|
|
|
id:MINE_ORDER_TYPE.SUCCEED,
|
|
|
|
|
|
title:"已完成",
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id:MINE_ORDER_TYPE.AFTER_SALE,
|
|
|
|
|
|
title:"售后",
|
2025-03-20 08:46:07 +08:00
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
form:{
|
|
|
|
|
|
search:null,//搜索
|
2025-03-23 20:36:06 +08:00
|
|
|
|
page:1,
|
2025-05-07 09:54:33 +08:00
|
|
|
|
pageSize:10,
|
|
|
|
|
|
type:MINE_ORDER_TYPE.UNPAID,// 选中的类型
|
2025-03-20 08:46:07 +08:00
|
|
|
|
},
|
2025-05-07 09:54:33 +08:00
|
|
|
|
hasMore: true, // 是否有更多数据可以加载
|
|
|
|
|
|
orderList:[],
|
2025-03-20 08:46:07 +08:00
|
|
|
|
cancelShow:false,// 取消订单
|
|
|
|
|
|
reasonList:[
|
|
|
|
|
|
{
|
|
|
|
|
|
id:1,
|
|
|
|
|
|
name:'地址信息填写错误',
|
|
|
|
|
|
},{
|
|
|
|
|
|
id:2,
|
|
|
|
|
|
name:'不想要了',
|
|
|
|
|
|
},{
|
|
|
|
|
|
id:3,
|
|
|
|
|
|
name:'商品错选/多选',
|
|
|
|
|
|
},{
|
|
|
|
|
|
id:4,
|
|
|
|
|
|
name:'没用/少用/错用优惠券',
|
|
|
|
|
|
},{
|
|
|
|
|
|
id:5,
|
|
|
|
|
|
name:'商品降价',
|
|
|
|
|
|
},{
|
|
|
|
|
|
id:6,
|
|
|
|
|
|
name:'其他原因',
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
cancelForm:{
|
|
|
|
|
|
reason:null,
|
|
|
|
|
|
remark:null,
|
|
|
|
|
|
},
|
2025-05-07 09:54:33 +08:00
|
|
|
|
loading: false, // 加载状态标志
|
|
|
|
|
|
openShow:false,
|
2025-05-23 18:03:45 +08:00
|
|
|
|
afterShow:false,// 售后申请
|
2025-03-20 08:46:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
onLoad(options) {
|
|
|
|
|
|
const type = options.type;
|
2025-05-07 09:54:33 +08:00
|
|
|
|
this.form.type = type && type < 5 ? parseInt(type,10) : MINE_ORDER_TYPE.UNPAID;
|
|
|
|
|
|
this.loadData();
|
2025-03-20 08:46:07 +08:00
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
2025-05-07 09:54:33 +08:00
|
|
|
|
dayjs,
|
2025-03-20 08:46:07 +08:00
|
|
|
|
getValue,
|
2025-05-07 09:54:33 +08:00
|
|
|
|
formatDate1,
|
|
|
|
|
|
copyData,
|
2025-05-23 18:03:45 +08:00
|
|
|
|
copyMobile(mobile){
|
|
|
|
|
|
copyData(mobile);
|
|
|
|
|
|
this.afterShow = false;
|
|
|
|
|
|
},
|
2025-03-20 08:46:07 +08:00
|
|
|
|
jumpLeft(){
|
|
|
|
|
|
uni.switchTab({
|
|
|
|
|
|
url: '/pages/mine/mine',
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
searchFun(val){
|
|
|
|
|
|
console.log("searchFun",val);
|
|
|
|
|
|
},
|
|
|
|
|
|
checkType(item){
|
2025-05-07 09:54:33 +08:00
|
|
|
|
this.form.page = 1;
|
2025-03-23 20:36:06 +08:00
|
|
|
|
this.form.type = item.id;
|
2025-05-07 09:54:33 +08:00
|
|
|
|
this.orderList = [];
|
|
|
|
|
|
if(item.id!==MINE_ORDER_TYPE.AFTER_SALE){
|
|
|
|
|
|
this.loadData();
|
|
|
|
|
|
}else{
|
|
|
|
|
|
this.openShow = true;// 未开发的弹框
|
|
|
|
|
|
}
|
2025-03-20 08:46:07 +08:00
|
|
|
|
},
|
2025-05-07 09:54:33 +08:00
|
|
|
|
jumpOrderInfo(item){
|
2025-03-20 08:46:07 +08:00
|
|
|
|
uni.navigateTo({
|
2025-05-07 09:54:33 +08:00
|
|
|
|
url:"/pages/mine_order_info/mine_order_info?id="+item.id,
|
2025-03-20 08:46:07 +08:00
|
|
|
|
})
|
|
|
|
|
|
},
|
2025-05-07 09:54:33 +08:00
|
|
|
|
// 处理到期时间
|
|
|
|
|
|
handleExpressTime(expressTime){
|
|
|
|
|
|
let resultM=0;
|
|
|
|
|
|
if(!expressTime || expressTime === 0){
|
|
|
|
|
|
return resultM;
|
|
|
|
|
|
}
|
|
|
|
|
|
const currentTimestamp = dayjs().unix();
|
|
|
|
|
|
const time = currentTimestamp - expressTime;
|
|
|
|
|
|
resultM = dayjs(time).format('YYYY-MM-DD HH:MM:SS'); // 获取时分格式的字符串
|
|
|
|
|
|
|
|
|
|
|
|
// 如果需要将时分转换为分钟数(例如,'12:34'转换为754分钟),则需要额外计算:
|
|
|
|
|
|
// const [hours, minutes] = formattedTime.split(':').map(Number); // 分解小时和分钟为数字
|
|
|
|
|
|
// resultM = hours * 60 + minutes; // 计算总分钟数
|
|
|
|
|
|
// console.log(resultM); // 输出总分钟数,例如754
|
|
|
|
|
|
return resultM;
|
|
|
|
|
|
},
|
|
|
|
|
|
// 加载数据的方法
|
|
|
|
|
|
async loadData() {
|
|
|
|
|
|
if (this.loading) return; // 如果正在加载,则不重复加载
|
|
|
|
|
|
this.loading = true; // 设置加载状态为true
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 模拟异步获取数据,实际应用中应该替换为你的数据获取逻辑,例如API调用
|
|
|
|
|
|
const newData = await this.fetchData(this.form.page, this.form.pageSize);
|
|
|
|
|
|
if(newData.entitys && newData.entitys.length !==0){
|
|
|
|
|
|
this.orderList = [...this.orderList, ...newData.entitys]; // 将新数据添加到列表中
|
|
|
|
|
|
this.form.page++; // 页码加1
|
2025-05-23 18:03:45 +08:00
|
|
|
|
console.log("this.orderList",this.orderList);
|
2025-05-07 09:54:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('加载数据失败:', error);
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
this.loading = false; // 设置加载状态为false
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
// 模拟获取数据的方法,实际应用中应该替换为你的数据获取逻辑,例如从服务器获取数据
|
|
|
|
|
|
async fetchData(page, pageSize) {
|
2025-03-23 20:36:06 +08:00
|
|
|
|
const params = {
|
|
|
|
|
|
...this.form,
|
2025-05-07 09:54:33 +08:00
|
|
|
|
page,
|
|
|
|
|
|
pageSize,
|
2025-03-23 20:36:06 +08:00
|
|
|
|
}
|
2025-05-07 09:54:33 +08:00
|
|
|
|
const data = await getOrderList(params);
|
|
|
|
|
|
if(data && data.bizcode === 100){
|
|
|
|
|
|
return data.data
|
|
|
|
|
|
}else{
|
|
|
|
|
|
return [];
|
2025-03-23 20:36:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2025-05-07 09:54:33 +08:00
|
|
|
|
// 当滚动到底部时触发的方法
|
|
|
|
|
|
loadMore() {
|
|
|
|
|
|
this.loadData(); // 加载更多数据
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2025-03-20 08:46:07 +08:00
|
|
|
|
checkCancel(status){
|
|
|
|
|
|
this.cancelShow = status;
|
|
|
|
|
|
if(!status){
|
|
|
|
|
|
this.cancelForm={
|
|
|
|
|
|
reason:null,
|
|
|
|
|
|
remark:null,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 确认取消
|
|
|
|
|
|
*/
|
|
|
|
|
|
cancelOk(){
|
|
|
|
|
|
const params={
|
|
|
|
|
|
...this.cancelForm,
|
|
|
|
|
|
}
|
|
|
|
|
|
if(!params.reason){
|
|
|
|
|
|
this.$refs.uToastRef.show({
|
|
|
|
|
|
type: 'error',
|
|
|
|
|
|
message: "请选择取消原因",
|
|
|
|
|
|
});
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
this.checkCancel(false);
|
2025-05-07 09:54:33 +08:00
|
|
|
|
},
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 确认收货
|
|
|
|
|
|
*/
|
|
|
|
|
|
confirmReceiptOk(item){
|
|
|
|
|
|
const then = this;
|
|
|
|
|
|
uni.showModal({
|
|
|
|
|
|
title: '提示',
|
|
|
|
|
|
content: '是否确认收货?',
|
|
|
|
|
|
success: function (res) {
|
|
|
|
|
|
if (res.confirm) {
|
|
|
|
|
|
then.confirmReceiptFun(item);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
async confirmReceiptFun(item){
|
|
|
|
|
|
const params = {
|
|
|
|
|
|
id:item.id,
|
|
|
|
|
|
}
|
|
|
|
|
|
const resp = await confirmReceipt(params);
|
|
|
|
|
|
if(resp && resp.bizcode === 100){
|
|
|
|
|
|
this.orderList = [];
|
|
|
|
|
|
this.form.page = 1;
|
|
|
|
|
|
this.loadData();
|
|
|
|
|
|
}
|
2025-03-20 08:46:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
.order_warp{
|
|
|
|
|
|
height: calc(100vh - 130rpx);
|
|
|
|
|
|
background-color: $app-bj;
|
|
|
|
|
|
padding: 100rpx 30rpx 30rpx;
|
|
|
|
|
|
overflow-y: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
.order_header{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.order_type_title{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
margin-top: 30rpx;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
.order_type_title_item{
|
|
|
|
|
|
margin-right: 40rpx;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
|
color: #222222;
|
|
|
|
|
|
}
|
|
|
|
|
|
.order_type_title_item_sel{
|
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
|
color: $app-bt-bj;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.order_list_warp{
|
2025-05-07 09:54:33 +08:00
|
|
|
|
// height: calc(100vh - 270rpx);
|
|
|
|
|
|
// overflow-y: auto;
|
2025-03-20 08:46:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
.order_item{
|
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
|
border-radius: 20rpx;
|
|
|
|
|
|
padding: 30rpx 20rpx;
|
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
|
.order_item_header{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.order_product_title{
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
color: #1A1A1A;
|
|
|
|
|
|
margin-left: 10rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.order_item_header_left{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.order_item_header_right{
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
font-size: 22rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.order_right_due{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
background: #FFF9F2;
|
|
|
|
|
|
border-radius: 19rpx 22rpx 22rpx 19rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.order_right_due_msg{
|
|
|
|
|
|
background: $app-bt-bj;
|
|
|
|
|
|
border-radius: 22rpx 0rpx 12rpx 22rpx;
|
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
|
padding: 10rpx 20rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.order_right_due_time{
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
|
color: $app-bt-bj;
|
|
|
|
|
|
padding: 10rpx 20rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.order_item_collect{
|
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
|
.collect_msg{
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
|
color: #666666;
|
|
|
|
|
|
text-align: right;
|
|
|
|
|
|
}
|
2025-05-07 09:54:33 +08:00
|
|
|
|
.collect_msg_s{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
}
|
2025-03-20 08:46:07 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.cancel_show_warp{
|
|
|
|
|
|
padding: 20rpx;
|
|
|
|
|
|
.cancel_show_title_warp{
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
|
color: #222222;
|
|
|
|
|
|
line-height: 48rpx;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.cancel_show_title_icon{
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 14rpx;
|
|
|
|
|
|
top: 6rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.cancel_show_msg_warp{
|
|
|
|
|
|
background: #F8F8F8;
|
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
|
color: #222222;
|
|
|
|
|
|
line-height: 48rpx;
|
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.cancel_show_reason_warp{
|
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
|
.reason_title{
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
|
color: #222222;
|
|
|
|
|
|
line-height: 36rpx;
|
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.but_border_warp{
|
|
|
|
|
|
border: 1rpx solid #eeeeee94;
|
|
|
|
|
|
margin: 30rpx 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.cancel_show_but{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.add_but {
|
|
|
|
|
|
position: initial;
|
|
|
|
|
|
width: 94%;
|
|
|
|
|
|
}
|
2025-05-07 09:54:33 +08:00
|
|
|
|
.content_info_title{
|
|
|
|
|
|
width: 370rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.content_item_yd{
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.content_item_yd_msg{
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
font-size: 18rpx;
|
|
|
|
|
|
}
|
2025-05-23 18:03:45 +08:00
|
|
|
|
.content_2{
|
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
|
color: rgba(0,0,0,0.4);
|
|
|
|
|
|
margin-bottom: 40rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.content_3{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
|
box-shadow: 0rpx 4rpx 12rpx 0rpx rgba(0,0,0,0.06);
|
|
|
|
|
|
border-radius: 12rpx;
|
|
|
|
|
|
.content_info{
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
}
|
|
|
|
|
|
.content_info_title{
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
|
color: rgba(0,0,0,0.9);
|
|
|
|
|
|
line-height: 38rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.content_info_mobile{
|
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
|
color: rgba(0,0,0,0.4);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.but_{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
margin-top: 40rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.but_close{
|
|
|
|
|
|
background: #F24A00;
|
|
|
|
|
|
box-shadow: 0rpx 4rpx 8rpx 0rpx rgba(242,74,0,0.5);
|
|
|
|
|
|
border-radius: 41rpx;
|
|
|
|
|
|
width: 60%;
|
|
|
|
|
|
padding: 20rpx 0;
|
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
|
}
|
2025-03-20 08:46:07 +08:00
|
|
|
|
</style>
|