| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660 |
- <template>
- <view class="container">
- <!-- #ifdef MP-ALIPAY -->
- <!-- 订单状态区 -->
- <view class="pos-f w-full state-area dflex navbar-area bg-main">
- <view class="nav-item dflex-c pos-r fs h-full" :class="{ active: tabCurrentIndex === index }"
- v-for="(item, index) in navList" :key="index" @click="tabClick(index)">
- {{ item.state }}
- </view>
- </view>
- <!-- 订单轮播区 -->
- <view class="order-area w-full" style="margin-top: 7vh;">
- <!-- 空白页 -->
- <use-empty v-if="navData.orderList.length === 0 && navData.loaded" e-style="round" e-type="cart"
- tip="订单数据为空" height="93vh"></use-empty>
- <!-- 订单列表区 -->
- <view class="padding-lr margin-bottom-sm" :class="index === 0 ? 'padding-top-sm' : ''"
- v-for="(item, index) in navData.orderList" :key="index">
- <!-- 订单项 -->
- <view class="order-item padding bg-main border-radius">
- <view @click="todetail(item)">
- <!-- 订单商品明细 -->
- <view class="goods-area" :class="{ 'margin-top': goodsIndex > 0 }"
- v-for="(goodsItem, goodsIndex) in item.orderDetails" :key="goodsIndex">
- <image :src="goodsItem.goodsMasterImg" mode="aspectFill"></image>
- <view class="right flex1">
- <text class="clamp-2">{{ goodsItem.goodsName }}</text>
- <view class="ft-dark fs-xs padding-top-xs">
- <text class="margin-right">× {{goodsItem.goodsCount}}</text>
- {{ goodsItem.goodsAttr || ' ' }}
- </view>
- <view class="margin-top-sm">
- <text class="price ft-main fs-sm">{{ goodsItem.goodsActualPrice }}</text>
- </view>
- </view>
- <!-- 实付款 -->
- <view class="dflex-e" style="padding-top: 70px;">
- <text class="fs-xs margin-right-xs">实付款</text>
- <text class="price ft-main">{{ item.totalPrice }}</text>
- </view>
- </view>
-
- </view>
- <!-- 订单操作区 -->
- <view class="dflex-b margin-top-sm">
- <view>
- <!-- 当前状态 -->
- <!-- <text class="ft-dark" v-if="item.order.order_refund_state == '处理中'">退款处理中</text>
- <text class="ft-dark"
- v-else-if="item.order.order_refund_state">{{ item.order.order_refund_state }}</text>
- <text class="ft-dark" v-else-if="item.order.state == '待评价'">已发货</text>
- <text class="ft-dark" v-else>{{ item.order.state }}</text> -->
- </view>
- <view class="dflex-e">
- <view class="dflex" v-if="item.state == '1'">
- <button class="action-btn border-radius-big bg-main"
- @click="cancelOrder(item)">取消订单</button>
- <button v-if="item.state == '1'"
- class="action-btn border-radius-big bg-main main-btn"
- @click="payment(item)">立即支付</button>
- <!-- <button v-if="item.order.state == '待核实'"
- class="action-btn border-radius-big bg-main main-btn"
- @click="payment(item.order)">待核实</button> -->
- </view>
- <view class="dflex" v-if="item.state == '2'">
- <button
- class="action-btn border-radius-big bg-main" @click="torefund(item)">申请退款</button>
- <!-- <button v-if="!item.order.order_refund_state"
- class="action-btn border-radius-big bg-main" @click="torefund(item)">申请退款</button> -->
- </view>
- <button v-if="['3',].includes(item.state)"
- class="action-btn border-radius-big bg-main" @click="toexpress(item)">查看物流</button>
- <!-- <button v-if="!item.order.order_refund_state &&
- ['待收货', '待评价', '已完成'].includes(item.order.state)"
- class="action-btn border-radius-big bg-main" @click="toexpress(item)">查看物流</button> -->
- <view class="dflex" v-if="item.state == '3'">
- <button
- class="action-btn border-radius-big bg-main main-btn"
- @click="toreceipt(item)">确认收货</button>
- <!-- <button v-if="!item.order.order_refund_state"
- class="action-btn border-radius-big bg-main main-btn"
- @click="toreceipt(item)">确认收货</button> -->
- </view>
- <view class="dflex" v-if="item.state == '4'">
- <button class="action-btn border-radius-big bg-main main-btn"
- @click="toevaluate(item)">我要评价</button>
- </view>
- <view class="dflex" v-if="['6'].includes(item.state)">
- <button class="action-btn border-radius-big bg-main main-btn"
- @click="delOrder(item)">删除订单</button>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 上拉加载更多 -->
- <use-loadmore v-if="navData.orderList.length > 0 && navData.loaded && navData.hasmore"
- :type="navData.loadingType"></use-loadmore>
- </view>
- <!-- #endif -->
- <!-- #ifndef MP-ALIPAY -->
- <!-- 订单状态区 -->
- <!-- <scroll-view scroll-x="true" class="navbar-area bg-main" :scroll-left="scrollLeft"> -->
- <view class="state-area dflex navbar-area bg-main">
- <view class="nav-item dflex-c pos-r fs h-full" :class="{ active: tabCurrentIndex === index }"
- v-for="(item, index) in navList" :key="index" @click="tabClick(index)">
- {{ item.state }}
- </view>
- </view>
- <!-- </scroll-view> -->
- <!-- 订单轮播区 -->
- <swiper class="swiper-area w-full" :duration="0" :current="tabCurrentIndex" @change="changeTab">
- <!-- 轮播项对应订单状态 -->
- <swiper-item class="tab-content wh-full" v-for="(tabItem, tabIndex) in navList" :key="tabIndex">
- <!-- 滚动区 -->
- <scroll-view class="h-full" scroll-y @scrolltolower="loadData">
- <!-- 空白页 -->
- <use-empty v-if="tabItem.orderList.length === 0 && tabItem.loaded" e-style="round" e-type="cart"
- tip="订单数据为空" height="93vh"></use-empty>
- <!-- 订单列表区 -->
- <view class="padding-lr margin-bottom-sm" :class="index === 0 ? 'padding-top-sm' : ''"
- v-for="(item, index) in tabItem.orderList" :key="index">
- <!-- 订单项 -->
- <view class="order-item padding bg-main border-radius">
- <view @click="todetail(item)">
- <!-- 订单商品明细 -->
- <view class="goods-area" :class="{ 'margin-top': goodsIndex > 0 }"
- v-for="(goodsItem, goodsIndex) in item.orderDetails" :key="goodsIndex">
- <image :src="goodsItem.goodsMasterImg" mode="aspectFill"></image>
- <view class="right flex1">
- <text class="clamp-2">{{ goodsItem.goodsName }}
- </text>
- <view class="ft-dark fs-xs padding-top-xs">
- <text class="margin-right">× {{goodsItem.goodsCount}}</text>
- {{ goodsItem.goodsAttr || ' ' }}
- </view>
- <view class="margin-top-sm">
- <text class="price ft-main fs-sm">{{ goodsItem.goodsActualPrice}}</text>
- </view>
- </view>
- <!-- 实付款 -->
- <view class="dflex-e" style="padding-top: 70px;">
- <text class="fs-xs margin-right-xs">实付款</text>
- <text class="price ft-main">{{ item.totalPrice}}</text>
- </view>
- </view>
-
- </view>
- <!-- 订单操作区 -->
- <view class="dflex-b margin-top-sm">
- <view>
- <!-- 当前状态 -->
- <!-- <text class="ft-dark" v-if="item.order.order_refund_state == '处理中'">退款处理中</text>
- <text class="ft-dark"
- v-else-if="item.order.order_refund_state">{{ item.order.order_refund_state }}</text>
- <text class="ft-dark" v-else-if="item.order.state == '待评价'">已发货</text>
- <text class="ft-dark" v-else>{{ item.order.state }}</text> -->
- </view>
- <view class="dflex-e">
- <view class="dflex" v-if="item.state == '1'">
- <button class="action-btn border-radius-big bg-main"
- @click="cancelOrder(item)">取消订单</button>
-
- <button v-if="item.state == '1'"
- class="action-btn border-radius-big bg-main main-btn"
- @click="payment(item)">立即支付</button>
- <!-- <button v-if="item.order.state == '待核实'"
- class="action-btn border-radius-big bg-main main-btn"
- @click="payment(item.order)">待核实</button> -->
- </view>
- <view class="dflex" v-if="item.state == '2'">
- <button
- class="action-btn border-radius-big bg-main" @click="torefund(item)">申请退款</button>
- <!-- <button v-if="!item.order.order_refund_state"
- class="action-btn border-radius-big bg-main" @click="torefund(item)">申请退款</button> -->
- </view>
- <button v-if="['3',].includes(item.state)"
- class="action-btn border-radius-big bg-main" @click="toexpress(item)">查看物流</button>
- <!-- <button v-if="!item.order.order_refund_state &&
- ['待收货', '待评价', '已完成'].includes(item.order.state)"
- class="action-btn border-radius-big bg-main" @click="toexpress(item)">查看物流</button> -->
- <view class="dflex" v-if="item.state == '3'">
- <button
- class="action-btn border-radius-big bg-main main-btn"
- @click="toreceipt(item)">确认收货</button>
- <!-- <button v-if="!item.order.order_refund_state"
- class="action-btn border-radius-big bg-main main-btn"
- @click="toreceipt(item)">确认收货</button> -->
- </view>
- <view class="dflex" v-if="item.state == '4'">
- <button class="action-btn border-radius-big bg-main main-btn"
- @click="toevaluate(item)">我要评价</button>
- </view>
- <view class="dflex" v-if="['6'].includes(item.state)">
- <button class="action-btn border-radius-big bg-main main-btn"
- @click="delOrder(item)">删除订单</button>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 上拉加载更多 -->
- <use-loadmore v-if="tabItem.orderList.length > 0 && tabItem.loaded && tabItem.hasmore"
- :type="tabItem.loadingType"></use-loadmore>
- </scroll-view>
- </swiper-item>
- </swiper>
- <!-- #endif -->
- </view>
- </template>
- <script>
- import {
- orserlist,
- orserdelete,
- orserclear,
- shouhuo
- } from '../../../utils/api_order.js'
- const _order = 'usemall-order'
- import {
- mapState
- } from 'vuex';
- export default {
- data() {
- return {
- tabCurrentIndex: 0,
- navData: {},
- navList: [{
- id: 0,
- state: '全部',
- orderState:7,
- loadingType: 'more',
- orderList: []
- },
- {
- id: 1,
- state: '待付款',
- orderState:1,
- loadingType: 'more',
- orderList: []
- },
- {
- id: 2,
- state: '待发货',
- orderState:2,
- loadingType: 'more',
- orderList: []
- },
- {
- id: 3,
- state: '待收货',
- orderState:3,
- loadingType: 'more',
- orderList: []
- },
- {
- id: 4,
- state: '待评价',
- orderState:4,
- loadingType: 'more',
- orderList: []
- },
- {
- id: 5,
- state: '已完成',
- orderState:5,
- loadingType: 'more',
- orderList: []
- },
- {
- id: 6,
- state: '已取消',
- orderState:6,
- loadingType: 'more',
- orderList: []
- },
- ],
- reqdata: {
- page: 1,
- rows: 10
- },
- scrollLeft: 0,
- title: '全部'
- };
- },
- watch: {
- tabCurrentIndex(nv, ov) {
- this.loadData('tab_change', 1);
- }
- },
- onShow(options) {
- let _this = this;
-
- let state = '';
- uni.getStorage({
- key: '__order_state',
- success(res) {
- state = res.data;
- let cur_nav = _this.navList.find(x => x.state == state);
- if (cur_nav) {
- _this.tabCurrentIndex = cur_nav.id;
- }
- uni.removeStorage({
- key: '__order_state'
- });
- },
- complete() {
- _this.loadData('refresh');
- }
- });
- },
- onLoad(options) {
- uni.$on('__event_order', res => {
- if (res == 'refresh') {
- this.loadData('refresh');
- }
- });
- },
- // 下拉刷新
- onPullDownRefresh() {
- this.loadData('refresh');
- },
- // 上拉加载更多
- onReachBottom() {
- this.loadData();
- },
- methods: {
- // 获取订单列表
- loadData(source = 'add', loading) {
- // 获取当前 nav
- let cur_nav = this.navList[this.tabCurrentIndex];
- this.title = cur_nav.state;
- console.log(this.title);
- console.log('loadData cur_nav', cur_nav);
- if (cur_nav.loadingType === 'loading') {
- //防止重复加载
- return;
- }
- this.reqdata.state = cur_nav.state;
- var orderState=cur_nav.orderState
- if (loading == 1 || source == 'refresh') {
- this.reqdata.page = 1;
- }
- if (source.type) {
- source.type = source.type.toLowerCase();
- }
- if (source === 'add' || source.type == 'scrolltolower') {
- if (cur_nav.loadingType == 'nomore') {
- return;
- }
- cur_nav.loadingType = 'loading';
- } else {
- cur_nav.loadingType = 'more';
- }
- var _self=this
- // 1等待付款、2等待发货、3等待收货、4等待评论、5完成、7全部
- var data='?curPage='+_self.reqdata.page+'&pageSize='+_self.reqdata.rows+'&orderState='+orderState
- orserlist(data).then((res) => {
- if(res.success){
- cur_nav.loaded = true;
-
- if (loading == 1 || source == 'refresh') {
- cur_nav.orderList = [];
- cur_nav.hasmore = 0;
- }
-
- if (res.data.list.length > 0) {
- let __datas = [];
- res.data.list.forEach(row => {
- __datas.push(row);
- });
-
- cur_nav.orderList = [...cur_nav.orderList, ...__datas];
-
- if (res.data.list.length >= _self.reqdata.rows) {
- if (_self.reqdata.page == 1) {
- cur_nav.hasmore = !0;
- }
- _self.reqdata.page++;
- cur_nav.loadingType = 'more';
- } else {
- cur_nav.loadingType = 'nomore';
- }
- } else {
- cur_nav.loadingType = 'nomore';
- }
-
- if (loading == 1) {
- uni.hideLoading();
- } else if (source == 'refresh') {
- uni.stopPullDownRefresh();
- }
-
- _self.navData = cur_nav;
- return
- }
- _self.$api.msg(res.msg);
- })
- },
- // swiper 切换
- changeTab(e) {
- this.tabCurrentIndex = e.target.current;
- },
- //顶部tab点击
- tabClick(index) {
- this.tabCurrentIndex = index;
- },
- // 点击跳转详情页面
- todetail(order) {
- uni.navigateTo({
- url: `/packageShang/pages/user/order/order-detail?order_id=${order.orderId}`
- });
- },
- // 立即支付
- payment(item) {
- if (item.order_pay_state == '待核实') {
- this.$api.msg('订单已支付待核实状态');
- return;
- }
- this.$api.topay({
- order_id: item.orderId,
- money: item.totalPrice
- });
- },
- // 删除订单
- delOrder(item) {
- let _this = this;
- uni.showModal({
- title: '提示',
- content: '删除订单',
- success: function(res) {
- if (res.confirm) {
- uni.showLoading({
- title: '请稍后'
- });
- var data=item.orderId
- orserdelete(data).then((res) => {
- if(res.success){
- _this.loadData('tab_change', 1);
- return
- }
- _this.$api.msg(res.msg);
- })
- } else if (res.cancel) {
- console.log('点击取消');
- }
- },
- complete() {
- uni.hideLoading();
- }
- });
- },
- // 取消订单
- cancelOrder(item) {
- let _this = this;
- uni.showModal({
- title: '提示',
- content: '取消订单',
- success: function(res) {
- if (res.confirm) {
- uni.showLoading({
- title: '请稍后'
- });
- var data=item.orderId
- orserclear(data).then((res) => {
- if(res.success){
- _this.loadData('tab_change', 1);
- return
- }
- _this.$api.msg(res.msg);
- })
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- },
- complete() {
- uni.hideLoading();
- }
- });
- },
- // 查看物流
- toexpress(item) {
- // this.$api.msg('查看物流开发中');
- uni.navigateTo({
- url: `/packageShang/pages/user/order/order-express?order_id=${item.orderId}`
- });
- },
- // 收货
- toreceipt(item) {
- let _this = this;
- uni.showModal({
- title: '提示',
- content: '确认收货',
- success: function(res) {
- if (res.confirm) {
- uni.showLoading({
- title: '请稍后'
- });
- var data=item.orderId
- shouhuo(data).then((res) => {
- if(res.success){
- _this.loadData('tab_change', 1);
- return
- }
- _this.$api.msg(res.msg);
- })
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- },
- complete() {
- uni.hideLoading();
- }
- });
- },
- // 申请退款
- torefund(data) {
- uni.navigateTo({
- url: `/packageShang/pages/user/order/order-refund?order_id=${data.orderId}`
- });
- },
- // 评价
- toevaluate(item) {
- uni.navigateTo({
- url: `/packageShang/pages/user/order/order-evaluate?id=${item.orderId}`
- });
- }
- }
- };
- </script>
- <style lang="scss">
- page,
- .container {
- min-height: 100%;
- background: $page-color-base;
- }
- @import url('/packageShang/components/iconfont/iconfont.css');
- @import url('/packageShang/common/common.scss');
- /* 订单状态区 */
- .navbar-area {
- white-space: nowrap;
- }
- .state-area {
- height: 7vh;
- box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
- z-index: 10;
- top: 0;
- }
- .nav-item {
- flex: 1;
- &.active {
- &:after {
- content: '';
- position: absolute;
- left: 50%;
- transform: translate(-50%);
- bottom: 0;
- width: 44px;
- height: 0;
- border-bottom: 2px solid $base-color;
- }
- }
- }
- /* 订单轮播区 */
- .swiper-area {
- height: 93vh;
- }
- /* 订单区 */
- .order-area {}
- /* 订单项 */
- .order-item {
- /* 订单商品明细区 */
- .goods-area {
- display: flex;
- image {
- width: 180rpx;
- height: 180rpx;
- }
- .right {
- padding: 0 30upx 0 24upx;
- overflow: hidden;
- .attr-box {
- font-size: $font-sm + 2upx;
- color: $font-color-light;
- padding: 10upx 12upx;
- }
- }
- }
- /* 操作按钮 */
- .action-btn {
- width: 156rpx;
- height: inherit;
- line-height: inherit;
- margin: 0;
- margin-left: 20rpx;
- padding: 12rpx 0;
- font-size: $font-sm + 2upx;
- /* #ifdef MP-QQ || MP-ALIPAY */
- border: 1px solid;
- /* #endif */
- &:after {
- border-radius: 100px;
- }
- &.main-btn {
- background: #fff9f9;
- color: $base-color;
- &:after {
- border-color: #f7bcc8;
- }
- }
- }
- }
- </style>
|