204 lines
6.6 KiB
Vue
204 lines
6.6 KiB
Vue
<template>
|
||
<page-meta :page-style="themeColor"></page-meta>
|
||
<view>
|
||
<view class="withdraw-cate">
|
||
<block v-for="(item, index) in category" :key="index">
|
||
<view @click="selectCate(item.id)" class="cate-li" :class="{ 'active color-base-text color-base-bg-before': selectId == item.id }">{{ item.name }}</view>
|
||
</block>
|
||
</view>
|
||
<mescroll-uni ref="mescroll" @getData="getData" top="90" class="member-point" :size="8" v-if="storeToken">
|
||
<view class="goods_list" slot="list">
|
||
<view class="order-list">
|
||
<view class="order-item" v-for="(orderItem, orderIndex) in orderList" :key="orderIndex" @click="toDetail(orderItem.fenxiao_order_id)">
|
||
<view class="order-header">
|
||
<text class="site-name font-size-base">{{ orderItem.order_no }}</text>
|
||
<text class="status-name color-base-text" v-if="orderItem.is_refund == 1">已退款</text>
|
||
<text class="status-name color-text-green" v-else-if="orderItem.is_settlement == 1">已结算</text>
|
||
<text class="status-name color-text-orange" v-else>待结算</text>
|
||
</view>
|
||
|
||
<view class="order-body">
|
||
<view class="goods-wrap">
|
||
<view class="goods-img">
|
||
<image :src="$util.img(orderItem.sku_image, { size: 'mid' })" @error="imageError(orderIndex)" mode="aspectFill" :lazy-load="true"></image>
|
||
</view>
|
||
<view class="goods-info">
|
||
<view class="top-wrap">
|
||
<view class="goods-name font-size-base">{{ orderItem.sku_name }}</view>
|
||
<view>
|
||
<text class="color-tip">返{{ fenxiaoWords.account }}</text>
|
||
<text class="price-color price-style small">{{ $lang('common.currencySymbol') }}</text>
|
||
<text class="price-color price-style large" >{{ parseFloat(orderItem.commission).toFixed(2).split(".")[0] }}</text>
|
||
<text class="price-color price-style small">.{{ parseFloat(orderItem.commission).toFixed(2).split(".")[1] }}</text>
|
||
</view>
|
||
</view>
|
||
<view class="goods-sub-section">
|
||
<view class="goods-price">
|
||
<text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text>
|
||
<text class="price-color price-style large" >{{ parseFloat(orderItem.price).toFixed(2).split(".")[0] }}</text>
|
||
<text class="unit price-style small">.{{ parseFloat(orderItem.price).toFixed(2).split(".")[1] }}</text>
|
||
</view>
|
||
<view>
|
||
<text>
|
||
<text class="iconfont icon-close"></text>
|
||
{{ orderItem.num }}
|
||
</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="order-footer">
|
||
<view class="order-base-info active">
|
||
<view class="order-type ">
|
||
<text class="color-tip">{{ $util.timeStampTurnTime(orderItem.create_time) }}</text>
|
||
<!-- <text>返{{ fenxiaoWords.account }}金额:</text>
|
||
<text class="color-base-text">{{ $lang('common.currencySymbol') }}{{ orderItem.commission }}</text> -->
|
||
</view>
|
||
<view class="total">
|
||
<text>合计:</text>
|
||
<text class="price-color">{{ $lang('common.currencySymbol') }}</text>
|
||
<text class="price-color font-size-toolbar" >{{ parseFloat(orderItem.real_goods_money).toFixed(2).split(".")[0] }}</text>
|
||
<text class="price-color">.{{ parseFloat(orderItem.real_goods_money).toFixed(2).split(".")[1] }}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="cart-empty">
|
||
<ns-empty text="暂无订单" :isIndex="false" v-if="selectId == 0 && orderList.length == 0 && emptyShow"></ns-empty>
|
||
<ns-empty text="暂无待结算订单" :isIndex="false" v-if="selectId == 1 && orderList.length == 0 && emptyShow"></ns-empty>
|
||
<ns-empty text="暂无已结算订单" :isIndex="false" v-if="selectId == 2 && orderList.length == 0 && emptyShow"></ns-empty>
|
||
<ns-empty text="暂无已退款订单" :isIndex="false" v-if="selectId == 3 && orderList.length == 0 && emptyShow"></ns-empty>
|
||
</view>
|
||
</view>
|
||
</mescroll-uni>
|
||
|
||
<ns-login ref="login"></ns-login>
|
||
<loading-cover ref="loadingCover"></loading-cover>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import fenxiaoWords from 'common/js/fenxiao-words.js';
|
||
export default {
|
||
data() {
|
||
return {
|
||
category: [
|
||
{
|
||
id: 0,
|
||
name: '全部',
|
||
number: 2
|
||
},
|
||
{
|
||
id: 1,
|
||
name: '待结算',
|
||
number: 0
|
||
},
|
||
{
|
||
id: 2,
|
||
name: '已结算',
|
||
number: 0
|
||
},
|
||
{
|
||
id: 3,
|
||
name: '已退款',
|
||
number: 0
|
||
}
|
||
],
|
||
selectId: 0,
|
||
orderList: [],
|
||
emptyShow: false,
|
||
fenxiaoId: '',
|
||
subMemberId: ''
|
||
};
|
||
},
|
||
mixins: [fenxiaoWords],
|
||
onLoad(option) {
|
||
if (option.type != undefined) this.selectId = option.type;
|
||
},
|
||
onShow() {
|
||
setTimeout( () => {
|
||
if (!this.addonIsExist.fenxiao) {
|
||
this.$util.showToast({
|
||
title: '商家未开启分销',
|
||
mask: true,
|
||
duration: 2000
|
||
});
|
||
setTimeout(() => {
|
||
this.$util.redirectTo('/pages/index/index');
|
||
}, 2000);
|
||
}
|
||
},1000);
|
||
|
||
if(this.fenxiaoWords && this.fenxiaoWords.concept)this.$langConfig.title(this.fenxiaoWords.concept + '订单');
|
||
|
||
if (!this.storeToken) {
|
||
this.$nextTick(() => {
|
||
this.$refs.login.open('/pages_promotion/fenxiao/order');
|
||
});
|
||
}
|
||
},
|
||
methods: {
|
||
//获得列表数据
|
||
getData(mescroll) {
|
||
this.emptyShow = false;
|
||
if (mescroll.num == 1) {
|
||
this.orderList = [];
|
||
}
|
||
this.$api.sendRequest({
|
||
url: '/fenxiao/api/order/page',
|
||
data: {
|
||
page: mescroll.num,
|
||
page_size: mescroll.size,
|
||
is_settlement: this.selectId
|
||
},
|
||
success: res => {
|
||
this.emptyShow = true;
|
||
let newArr = [];
|
||
let msg = res.message;
|
||
if (res.code == 0 && res.data && res.data.list) {
|
||
newArr = res.data.list;
|
||
} else {
|
||
this.$util.showToast({ title: res.message });
|
||
}
|
||
mescroll.endSuccess(newArr.length);
|
||
//设置列表数据
|
||
if (mescroll.num == 1) this.orderList = []; //如果是第一页需手动制空列表
|
||
this.orderList = this.orderList.concat(newArr); //追加新数据
|
||
if (this.$refs.loadingCover) this.$refs.loadingCover.hide();
|
||
},
|
||
fail: res => {
|
||
mescroll.endErr();
|
||
if (this.$refs.loadingCover) this.$refs.loadingCover.hide();
|
||
}
|
||
});
|
||
},
|
||
selectCate(e) {
|
||
this.selectId = e;
|
||
this.$refs.mescroll.refresh();
|
||
},
|
||
toDetail(e) {
|
||
this.$util.redirectTo('/pages_promotion/fenxiao/order_detail', {
|
||
id: e
|
||
});
|
||
},
|
||
imageError(index) {
|
||
this.orderList[index].sku_image = this.$util.getDefaultImage().goods;
|
||
this.$forceUpdate();
|
||
}
|
||
},
|
||
watch: {
|
||
storeToken: function(nVal, oVal) {
|
||
if (nVal) {
|
||
this.$refs.mescroll.refresh();
|
||
}
|
||
}
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
@import './public/css/order.scss';
|
||
</style>
|