2021-05-13 10:56:04 +08:00
|
|
|
|
<template>
|
2021-07-19 18:03:35 +08:00
|
|
|
|
<div class="bill-detail">
|
|
|
|
|
<Card>
|
|
|
|
|
<p slot="title">商家信息</p>
|
|
|
|
|
<div class="flex flex_align_item">
|
|
|
|
|
<p>店铺名称:{{ bill.storeName }}</p>
|
|
|
|
|
<p>银行开户名:{{ bill.bankAccountName }}</p>
|
|
|
|
|
<p>银行账号:{{ bill.bankAccountNumber }}</p>
|
|
|
|
|
<p>开户行支行名称:{{ bill.bankName }}</p>
|
|
|
|
|
<p>支行联行号:{{ bill.bankCode }}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</Card>
|
|
|
|
|
<Card class="mt_10">
|
|
|
|
|
<p slot="title">账单详细</p>
|
2021-05-13 10:56:04 +08:00
|
|
|
|
|
2021-07-19 18:03:35 +08:00
|
|
|
|
<div class="tips-status">
|
2021-10-19 14:20:20 +08:00
|
|
|
|
<span>账单状态</span>
|
2021-05-13 10:56:04 +08:00
|
|
|
|
|
2021-07-19 18:03:35 +08:00
|
|
|
|
<span class="theme_color">{{
|
|
|
|
|
bill.billStatus | unixSellerBillStatus
|
|
|
|
|
}}</span>
|
2021-05-13 10:56:04 +08:00
|
|
|
|
|
2021-08-20 17:45:57 +08:00
|
|
|
|
<Button v-if="bill.billStatus == 'OUT'" size="mini" @click="reconciliation()" type="primary">对账</Button>
|
2021-07-19 18:03:35 +08:00
|
|
|
|
</div>
|
2021-08-12 18:39:34 +08:00
|
|
|
|
<table>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr v-for="(item,index) in data" :key="index">
|
2021-08-20 17:45:57 +08:00
|
|
|
|
<td>{{item.name}}</td>
|
|
|
|
|
<td>{{item.value}}</td>
|
2021-08-12 18:39:34 +08:00
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
<div>
|
|
|
|
|
<h3 class="ml_10">结算详细</h3>
|
|
|
|
|
<div class="bill-detail-price">
|
2023-03-31 18:16:33 +08:00
|
|
|
|
<div class="flex bill-item">
|
2022-04-22 09:04:20 +08:00
|
|
|
|
<span>
|
|
|
|
|
<p>退单金额</p>
|
|
|
|
|
<p class="theme_color">-{{bill.refundPrice || 0 | unitPrice('¥')}}</p>
|
|
|
|
|
</span>
|
|
|
|
|
<span>
|
|
|
|
|
<p>平台收取佣金</p>
|
|
|
|
|
<p class="theme_color">-{{bill.commissionPrice || 0 | unitPrice('¥')}}</p>
|
|
|
|
|
</span>
|
|
|
|
|
<span>
|
|
|
|
|
<p>分销返现支出</p>
|
|
|
|
|
<p class="theme_color">-{{bill.distributionCommission || 0 | unitPrice('¥')}}</p>
|
|
|
|
|
</span>
|
|
|
|
|
<span>
|
|
|
|
|
<p>退单平台优惠券补贴返还</p>
|
|
|
|
|
<p class="theme_color">-{{bill.siteCouponRefundCommission || 0 | unitPrice('¥')}}</p>
|
|
|
|
|
</span>
|
2023-03-31 18:16:33 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="flex bill-item">
|
2022-04-22 09:04:20 +08:00
|
|
|
|
<span>
|
|
|
|
|
<p>平台优惠券补贴</p>
|
|
|
|
|
<p class="increase-color">+{{bill.siteCouponCommission || 0 | unitPrice('¥')}}</p>
|
|
|
|
|
</span>
|
2023-03-31 18:16:33 +08:00
|
|
|
|
<span>
|
|
|
|
|
<p>退单产生退还佣金金额</p>
|
|
|
|
|
<p class="increase-color">+{{bill.refundCommissionPrice || 0 | unitPrice('¥')}}</p>
|
|
|
|
|
</span>
|
|
|
|
|
<span>
|
|
|
|
|
<p>退单分销返现返还</p>
|
|
|
|
|
<p class="increase-color">+{{bill.distributionRefundCommission || 0 | unitPrice('¥')}}</p>
|
|
|
|
|
</span>
|
2022-04-22 09:04:20 +08:00
|
|
|
|
<span>
|
|
|
|
|
<p>积分结算金额</p>
|
|
|
|
|
<p class="increase-color">+{{bill.pointSettlementPrice || 0 | unitPrice('¥')}}</p>
|
|
|
|
|
</span>
|
|
|
|
|
<span>
|
|
|
|
|
<p>砍价商品结算金额</p>
|
|
|
|
|
<p class="increase-color">+{{bill.kanjiaSettlementPrice || 0 | unitPrice('¥')}}</p>
|
|
|
|
|
</span>
|
2023-03-31 18:16:33 +08:00
|
|
|
|
</div>
|
2022-04-22 09:04:20 +08:00
|
|
|
|
</div>
|
2021-08-12 18:39:34 +08:00
|
|
|
|
</div>
|
2021-07-19 18:03:35 +08:00
|
|
|
|
</Card>
|
|
|
|
|
<Card class="mt_10">
|
|
|
|
|
<Tabs active-key="tab" type="card" @on-click="clickTabs">
|
2021-05-13 10:56:04 +08:00
|
|
|
|
<Tab-pane label="订单列表" name="order">
|
2021-08-20 17:45:57 +08:00
|
|
|
|
<Table :loading="loading" border :columns="orderColumns" :data="orderData" ref="table"></Table>
|
|
|
|
|
<Row type="flex" justify="end" class="mt_10">
|
|
|
|
|
<Page :current="orderParam.pageNumber" :total="orderTotal" :page-size="orderParam.pageSize" @on-change="orderChangePage" @on-page-size-change="orderChangePageSize" size="small" show-total
|
|
|
|
|
show-elevator></Page>
|
|
|
|
|
</Row>
|
2021-05-13 10:56:04 +08:00
|
|
|
|
</Tab-pane>
|
|
|
|
|
<Tab-pane label="退单列表" name="refund">
|
2021-08-20 17:45:57 +08:00
|
|
|
|
<Table :loading="loading" border :columns="refundColumns" :data="refundData" ref="table"></Table>
|
|
|
|
|
<Row type="flex" justify="end" class="mt_10">
|
|
|
|
|
<Page :current="refundParam.pageNumber" :total="refundTotal" :page-size="refundParam.pageSize" @on-change="refundChangePage" @on-page-size-change="refundChangePageSize" size="small"
|
|
|
|
|
show-total show-elevator></Page>
|
|
|
|
|
</Row>
|
2021-05-13 10:56:04 +08:00
|
|
|
|
</Tab-pane>
|
|
|
|
|
<Tab-pane label="分销费用列表" name="distribution">
|
2021-08-20 17:45:57 +08:00
|
|
|
|
<Table :loading="loading" border :columns="distributionColumns" :data="distributionData" ref="table"></Table>
|
|
|
|
|
<Row type="flex" justify="end" class="mt_10">
|
|
|
|
|
<Page :current="distributionParam.pageNumber" :total="distributionTotal" :page-size="distributionParam.pageSize" @on-change="distributionChangePage"
|
|
|
|
|
@on-page-size-change="distributionChangePageSize" size="small" show-total show-elevator></Page>
|
|
|
|
|
</Row>
|
2021-05-13 10:56:04 +08:00
|
|
|
|
</Tab-pane>
|
|
|
|
|
</Tabs>
|
2021-07-19 18:03:35 +08:00
|
|
|
|
</Card>
|
2021-05-13 10:56:04 +08:00
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
import * as filters from "@/utils/filters";
|
|
|
|
|
import * as API_Shop from "@/api/shops";
|
|
|
|
|
export default {
|
|
|
|
|
name: "bill-detail",
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2021-08-20 17:45:57 +08:00
|
|
|
|
loading: true,
|
2021-05-13 10:56:04 +08:00
|
|
|
|
columns: [
|
|
|
|
|
{
|
|
|
|
|
title: "项目",
|
|
|
|
|
key: "name",
|
|
|
|
|
width: 250,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "值",
|
|
|
|
|
key: "value",
|
|
|
|
|
},
|
|
|
|
|
],
|
2021-08-20 17:45:57 +08:00
|
|
|
|
data: [
|
|
|
|
|
// 账单数据
|
2021-05-13 10:56:04 +08:00
|
|
|
|
{
|
|
|
|
|
name: "计算中",
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "计算中",
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "计算中",
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "计算中",
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "计算中",
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "计算中",
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
name: "计算公式",
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
{
|
2021-08-12 18:39:34 +08:00
|
|
|
|
name: "计算公式",
|
2021-05-13 10:56:04 +08:00
|
|
|
|
value: 0,
|
2021-08-20 17:45:57 +08:00
|
|
|
|
},
|
2021-05-13 10:56:04 +08:00
|
|
|
|
],
|
|
|
|
|
id: "", // 账单id
|
|
|
|
|
bill: {}, // 商家信息
|
|
|
|
|
orderParam: {
|
|
|
|
|
pageNumber: 1, // 当前页数
|
|
|
|
|
pageSize: 10, // 页面大小
|
|
|
|
|
sort: "id", // 默认排序字段
|
|
|
|
|
order: "desc", // 默认排序方式
|
|
|
|
|
flowType: "PAY",
|
|
|
|
|
},
|
|
|
|
|
orderColumns: [
|
|
|
|
|
{
|
|
|
|
|
title: "入账时间",
|
|
|
|
|
key: "createTime",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "订单编号",
|
2021-07-30 15:59:14 +08:00
|
|
|
|
key: "orderSn",
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "订单金额",
|
|
|
|
|
key: "finalPrice",
|
|
|
|
|
render: (h, params) => {
|
|
|
|
|
return h(
|
|
|
|
|
"div",
|
|
|
|
|
this.$options.filters.unitPrice(params.row.finalPrice, "¥")
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
},
|
2021-07-28 10:56:37 +08:00
|
|
|
|
{
|
|
|
|
|
title: "砍价商品结算价格",
|
|
|
|
|
key: "kanjiaSettlementPrice",
|
|
|
|
|
render: (h, params) => {
|
2021-07-30 15:59:14 +08:00
|
|
|
|
if (params.row.kanjiaSettlementPrice) {
|
|
|
|
|
return h(
|
|
|
|
|
"div",
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.$options.filters.unitPrice(
|
|
|
|
|
params.row.kanjiaSettlementPrice,
|
|
|
|
|
"¥"
|
|
|
|
|
)
|
2021-07-30 15:59:14 +08:00
|
|
|
|
);
|
|
|
|
|
} else {
|
2021-08-20 17:45:57 +08:00
|
|
|
|
return h("div", "¥0.00");
|
2021-07-30 15:59:14 +08:00
|
|
|
|
}
|
2021-07-28 10:56:37 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "积分商品结算价格",
|
|
|
|
|
key: "pointSettlementPrice",
|
|
|
|
|
render: (h, params) => {
|
2021-08-20 17:45:57 +08:00
|
|
|
|
if (params.row.pointSettlementPrice) {
|
2021-07-30 15:59:14 +08:00
|
|
|
|
return h(
|
|
|
|
|
"div",
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.$options.filters.unitPrice(
|
|
|
|
|
params.row.pointSettlementPrice,
|
|
|
|
|
"¥"
|
|
|
|
|
)
|
2021-07-30 15:59:14 +08:00
|
|
|
|
);
|
|
|
|
|
} else {
|
2021-08-20 17:45:57 +08:00
|
|
|
|
return h("div", "¥0.00");
|
2021-07-30 15:59:14 +08:00
|
|
|
|
}
|
2021-07-28 10:56:37 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
2021-05-13 10:56:04 +08:00
|
|
|
|
{
|
|
|
|
|
title: "平台分佣",
|
|
|
|
|
key: "commissionPrice",
|
|
|
|
|
render: (h, params) => {
|
|
|
|
|
return h(
|
|
|
|
|
"div",
|
|
|
|
|
this.$options.filters.unitPrice(params.row.commissionPrice, "¥")
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "平台优惠券",
|
|
|
|
|
key: "siteCouponPrice",
|
|
|
|
|
render: (h, params) => {
|
2021-08-20 17:45:57 +08:00
|
|
|
|
if (params.row.siteCouponPrice == null) {
|
|
|
|
|
return h("div", "-");
|
|
|
|
|
} else {
|
2021-05-13 10:56:04 +08:00
|
|
|
|
return h(
|
|
|
|
|
"div",
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.$options.filters.unitPrice(
|
|
|
|
|
params.row.siteCouponPrice,
|
|
|
|
|
"¥"
|
|
|
|
|
)
|
2021-05-13 10:56:04 +08:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
2022-05-11 19:18:04 +08:00
|
|
|
|
{
|
|
|
|
|
title: "平台优惠券补贴金额",
|
|
|
|
|
key: "siteCouponCommission",
|
|
|
|
|
render: (h, params) => {
|
|
|
|
|
if(params.row.siteCouponCommission == null){
|
|
|
|
|
return h(
|
|
|
|
|
"div",
|
|
|
|
|
"-"
|
|
|
|
|
);
|
|
|
|
|
}else{
|
|
|
|
|
return h(
|
|
|
|
|
"div",
|
|
|
|
|
this.$options.filters.unitPrice(params.row.siteCouponCommission, "¥")
|
|
|
|
|
);
|
|
|
|
|
}
|
2023-03-31 18:16:33 +08:00
|
|
|
|
|
2022-05-11 19:18:04 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
2021-05-13 10:56:04 +08:00
|
|
|
|
{
|
|
|
|
|
title: "分销金额",
|
|
|
|
|
key: "distributionRebate",
|
|
|
|
|
render: (h, params) => {
|
2021-08-20 17:45:57 +08:00
|
|
|
|
if (params.row.distributionRebate == null) {
|
|
|
|
|
return h("div", "-");
|
|
|
|
|
} else {
|
2021-05-13 10:56:04 +08:00
|
|
|
|
return h(
|
|
|
|
|
"div",
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.$options.filters.unitPrice(
|
|
|
|
|
params.row.distributionRebate,
|
|
|
|
|
"¥"
|
|
|
|
|
)
|
2021-05-13 10:56:04 +08:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "应结金额",
|
|
|
|
|
key: "billPrice",
|
|
|
|
|
render: (h, params) => {
|
|
|
|
|
return h(
|
|
|
|
|
"div",
|
|
|
|
|
this.$options.filters.unitPrice(params.row.billPrice, "¥")
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
orderData: [], // 订单列表
|
|
|
|
|
orderTotal: 0, // 订单数量
|
|
|
|
|
//退单部分
|
|
|
|
|
refundParam: {
|
|
|
|
|
pageNumber: 1, // 当前页数
|
|
|
|
|
pageSize: 10, // 页面大小
|
|
|
|
|
sort: "id", // 默认排序字段
|
|
|
|
|
order: "desc", // 默认排序方式
|
|
|
|
|
flowType: "REFUND",
|
|
|
|
|
},
|
|
|
|
|
refundColumns: [
|
|
|
|
|
{
|
|
|
|
|
title: "退款时间",
|
|
|
|
|
key: "createTime",
|
2021-08-20 17:45:57 +08:00
|
|
|
|
minWidth: 120,
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "退款流水编号",
|
|
|
|
|
key: "sn",
|
2022-04-26 11:14:57 +08:00
|
|
|
|
minWidth: 120,
|
|
|
|
|
tooltip: true
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "订单编号",
|
2022-04-26 11:14:57 +08:00
|
|
|
|
key: "orderSn",
|
|
|
|
|
minWidth: 120,
|
|
|
|
|
tooltip: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "售后编号",
|
|
|
|
|
key: "refundSn",
|
2021-08-20 17:45:57 +08:00
|
|
|
|
minWidth: 120,
|
2022-04-26 11:14:57 +08:00
|
|
|
|
tooltip: true
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "退款金额",
|
|
|
|
|
key: "finalPrice",
|
|
|
|
|
minWidth: 120,
|
|
|
|
|
render: (h, params) => {
|
|
|
|
|
return h(
|
|
|
|
|
"div",
|
|
|
|
|
this.$options.filters.unitPrice(params.row.finalPrice, "¥")
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "退还佣金",
|
|
|
|
|
key: "commissionPrice",
|
|
|
|
|
minWidth: 120,
|
|
|
|
|
render: (h, params) => {
|
2021-08-20 17:45:57 +08:00
|
|
|
|
if (params.row.commissionPrice) {
|
2021-05-13 10:56:04 +08:00
|
|
|
|
return h(
|
|
|
|
|
"div",
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.$options.filters.unitPrice(
|
|
|
|
|
params.row.commissionPrice,
|
|
|
|
|
"¥"
|
|
|
|
|
)
|
2021-05-13 10:56:04 +08:00
|
|
|
|
);
|
2021-08-20 17:45:57 +08:00
|
|
|
|
} else {
|
|
|
|
|
return h("div", this.$options.filters.unitPrice(0, "¥"));
|
2021-05-13 10:56:04 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
title: "退还平台优惠券",
|
|
|
|
|
key: "siteCouponCommission",
|
2021-08-20 17:45:57 +08:00
|
|
|
|
minWidth: 140,
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "退还分销",
|
|
|
|
|
key: "distributionRebate",
|
|
|
|
|
minWidth: 120,
|
|
|
|
|
render: (h, params) => {
|
2021-08-20 17:45:57 +08:00
|
|
|
|
if (params.row.distributionRebate == null) {
|
|
|
|
|
return h("div", "-");
|
|
|
|
|
} else {
|
2021-05-13 10:56:04 +08:00
|
|
|
|
return h(
|
|
|
|
|
"div",
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.$options.filters.unitPrice(
|
|
|
|
|
params.row.distributionRebate,
|
|
|
|
|
"¥"
|
|
|
|
|
)
|
2021-05-13 10:56:04 +08:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
title: "合计金额",
|
|
|
|
|
key: "billPrice",
|
|
|
|
|
minWidth: 120,
|
|
|
|
|
render: (h, params) => {
|
2021-08-20 17:45:57 +08:00
|
|
|
|
if (params.row.billPrice == null) {
|
|
|
|
|
return h("div", "-");
|
|
|
|
|
} else {
|
2021-05-13 10:56:04 +08:00
|
|
|
|
return h(
|
|
|
|
|
"div",
|
|
|
|
|
this.$options.filters.unitPrice(params.row.billPrice, "¥")
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
refundData: [], // 退单数据
|
|
|
|
|
refundTotal: 0, // 退单数量
|
|
|
|
|
//分销佣金部分
|
|
|
|
|
distributionParam: {
|
|
|
|
|
pageNumber: 1, // 当前页数
|
|
|
|
|
pageSize: 10, // 页面大小
|
|
|
|
|
sort: "id", // 默认排序字段
|
|
|
|
|
order: "desc", // 默认排序方式
|
|
|
|
|
},
|
|
|
|
|
distributionColumns: [
|
|
|
|
|
{
|
|
|
|
|
title: "订单编号",
|
|
|
|
|
key: "sn",
|
2021-08-20 17:45:57 +08:00
|
|
|
|
minWidth: 120,
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "交易金额",
|
|
|
|
|
key: "finalPrice",
|
2021-08-20 17:45:57 +08:00
|
|
|
|
minWidth: 120,
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "商品名称",
|
|
|
|
|
key: "goodsName",
|
|
|
|
|
minWidth: 120,
|
2021-08-20 17:45:57 +08:00
|
|
|
|
tooltip: true,
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "规格",
|
|
|
|
|
key: "finalPrice",
|
|
|
|
|
minWidth: 120,
|
|
|
|
|
render: (h, params) => {
|
|
|
|
|
return h(
|
|
|
|
|
"div",
|
|
|
|
|
this.$options.filters.unitPrice(params.row.finalPrice, "¥")
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "店铺名称",
|
|
|
|
|
key: "storeName",
|
2021-08-20 17:45:57 +08:00
|
|
|
|
minWidth: 120,
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
title: "佣金",
|
|
|
|
|
key: "distributionRebate",
|
|
|
|
|
minWidth: 120,
|
|
|
|
|
render: (h, params) => {
|
2021-08-20 17:45:57 +08:00
|
|
|
|
if (params.row.flowType === "退款") {
|
|
|
|
|
return h(
|
|
|
|
|
"div",
|
|
|
|
|
this.$options.filters.unitPrice(
|
|
|
|
|
"-" + params.row.distributionRebate,
|
|
|
|
|
"¥"
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
if (params.row.distributionRebate) {
|
|
|
|
|
return h(
|
|
|
|
|
"div",
|
|
|
|
|
this.$options.filters.unitPrice(
|
|
|
|
|
params.row.distributionRebate,
|
|
|
|
|
"¥"
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
return h("div", this.$options.filters.unitPrice(0, "¥"));
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "时间",
|
|
|
|
|
key: "createTime",
|
2021-08-20 17:45:57 +08:00
|
|
|
|
minWidth: 120,
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
distributionData: [], // 分销数据
|
|
|
|
|
distributionTotal: 0, // 分销总数
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
watch: {
|
2021-08-20 17:45:57 +08:00
|
|
|
|
"$route.query.id": function (val) {
|
2021-05-13 10:56:04 +08:00
|
|
|
|
this.id = val;
|
|
|
|
|
this.getBill();
|
2021-08-20 17:45:57 +08:00
|
|
|
|
},
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
clickTabs(v) {
|
|
|
|
|
if (v == "order") {
|
|
|
|
|
this.orderParam.flowType = "PAY";
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.getOrderList();
|
|
|
|
|
} else if (v === "refund") {
|
2021-05-13 10:56:04 +08:00
|
|
|
|
this.orderParam.flowType = "REFUND";
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.getRefundList();
|
|
|
|
|
} else {
|
|
|
|
|
this.getDistributionList();
|
2021-05-13 10:56:04 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
//核对结算单
|
|
|
|
|
reconciliation() {
|
|
|
|
|
this.$Modal.confirm({
|
|
|
|
|
title: "确认核对结算单",
|
|
|
|
|
// 记得确认修改此处
|
|
|
|
|
content: "您确认要核对此结算单么?",
|
|
|
|
|
loading: true,
|
|
|
|
|
onOk: () => {
|
|
|
|
|
API_Shop.reconciliation(this.id).then((res) => {
|
|
|
|
|
this.$Modal.remove();
|
2021-05-17 16:04:36 +08:00
|
|
|
|
if (res.success) {
|
2021-05-13 10:56:04 +08:00
|
|
|
|
this.$Message.success("账单核对成功");
|
|
|
|
|
this.init();
|
|
|
|
|
}
|
|
|
|
|
});
|
2021-08-20 17:45:57 +08:00
|
|
|
|
},
|
2021-05-13 10:56:04 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
init() {
|
|
|
|
|
this.id = this.$route.query.id;
|
|
|
|
|
this.getBill();
|
|
|
|
|
},
|
|
|
|
|
//订单列表部分
|
|
|
|
|
orderChangePage(v) {
|
|
|
|
|
this.orderParam.pageNumber = v;
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.getOrderList();
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
orderChangePageSize(v) {
|
|
|
|
|
this.orderParam.pageSize = v;
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.getOrderList();
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
2021-08-20 17:45:57 +08:00
|
|
|
|
getOrderList() {
|
|
|
|
|
API_Shop.getSellerFlow(this.id, this.orderParam).then((res) => {
|
2021-05-13 10:56:04 +08:00
|
|
|
|
if (res.success) {
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.loading = false;
|
2021-05-13 10:56:04 +08:00
|
|
|
|
this.orderData = res.result.records;
|
|
|
|
|
this.orderTotal = res.result.total;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//退单部分
|
|
|
|
|
refundChangePage(v) {
|
|
|
|
|
this.refundParam.pageNumber = v;
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.getRefundList();
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
refundChangePageSize(v) {
|
|
|
|
|
this.refundParam.pageSize = v;
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.getRefundList();
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
getRefundList() {
|
|
|
|
|
API_Shop.getSellerFlow(this.id, this.refundParam).then((res) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (res.result) {
|
|
|
|
|
this.refundData = res.result.records;
|
|
|
|
|
this.refundTotal = res.result.total;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//分销费用列表
|
|
|
|
|
distributionChangePage(v) {
|
|
|
|
|
this.distributionParam.pageNumber = v;
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.getDistributionList();
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
distributionChangePageSize(v) {
|
|
|
|
|
this.distributionParam.pageSize = v;
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.getDistributionList();
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
getDistributionList() {
|
2021-08-20 17:45:57 +08:00
|
|
|
|
API_Shop.getDistributionFlow(this.id, this.distributionParam).then(
|
|
|
|
|
(res) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (res.result) {
|
|
|
|
|
this.distributionData = res.result.records;
|
|
|
|
|
this.distributionTotal = res.result.total;
|
|
|
|
|
}
|
2021-05-13 10:56:04 +08:00
|
|
|
|
}
|
2021-08-20 17:45:57 +08:00
|
|
|
|
);
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
//获取结算单详细
|
2021-08-20 17:45:57 +08:00
|
|
|
|
getBill() {
|
2021-05-13 10:56:04 +08:00
|
|
|
|
API_Shop.getBillDetail(this.id).then((res) => {
|
|
|
|
|
if (res.success) {
|
|
|
|
|
this.bill = res.result;
|
|
|
|
|
//初始化表格
|
|
|
|
|
this.initTable();
|
|
|
|
|
//初始化订单信息
|
|
|
|
|
this.getOrderList();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
2021-07-19 18:03:35 +08:00
|
|
|
|
// 账单详细
|
2021-05-13 10:56:04 +08:00
|
|
|
|
initTable() {
|
|
|
|
|
let bill = this.bill;
|
|
|
|
|
this.data[0].name = "结算单号";
|
|
|
|
|
this.data[0].value = bill.sn;
|
|
|
|
|
|
|
|
|
|
this.data[1].name = "起止日期";
|
|
|
|
|
this.data[1].value = bill.startTime + "~" + bill.endTime;
|
|
|
|
|
|
|
|
|
|
this.data[2].name = "出帐日期";
|
|
|
|
|
this.data[2].value = bill.createTime;
|
|
|
|
|
|
|
|
|
|
this.data[3].name = "当前状态";
|
|
|
|
|
this.data[3].value = filters.unixSellerBillStatus(bill.billStatus);
|
|
|
|
|
|
|
|
|
|
this.data[4].name = "当前店铺";
|
|
|
|
|
this.data[4].value = bill.storeName;
|
|
|
|
|
|
|
|
|
|
this.data[5].name = "平台打款时间";
|
|
|
|
|
this.data[5].value = bill.payTime === null ? "未付款" : bill.payTime;
|
|
|
|
|
|
2021-08-12 18:39:34 +08:00
|
|
|
|
this.data[6].name = "订单付款总金额";
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.data[6].value = filters.unitPrice(
|
|
|
|
|
bill.orderPrice ? bill.orderPrice : 0,
|
|
|
|
|
"¥"
|
|
|
|
|
);
|
2021-08-12 18:39:34 +08:00
|
|
|
|
this.data[7].name = "结算金额";
|
2021-08-20 17:45:57 +08:00
|
|
|
|
this.data[7].value = filters.unitPrice(
|
|
|
|
|
bill.billPrice ? bill.billPrice : 0,
|
|
|
|
|
"¥"
|
|
|
|
|
);
|
2021-05-13 10:56:04 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
this.init();
|
|
|
|
|
},
|
2021-07-31 15:49:54 +08:00
|
|
|
|
// 如果是从详情页返回列表页,修改列表页keepAlive为true,确保不刷新页面
|
2021-08-20 17:45:57 +08:00
|
|
|
|
beforeRouteLeave(to, from, next) {
|
|
|
|
|
if (to.name === "accountStatementBill" || to.name === "storeBill") {
|
|
|
|
|
to.meta.keepAlive = true;
|
2021-07-31 15:49:54 +08:00
|
|
|
|
}
|
2021-08-20 17:45:57 +08:00
|
|
|
|
next();
|
|
|
|
|
},
|
2021-05-13 10:56:04 +08:00
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.flex {
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
> p {
|
|
|
|
|
width: 50%;
|
|
|
|
|
margin: 15px 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-20 17:45:57 +08:00
|
|
|
|
.page {
|
2021-07-19 18:03:35 +08:00
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
2021-05-13 10:56:04 +08:00
|
|
|
|
.tips-status {
|
2021-08-12 18:39:34 +08:00
|
|
|
|
padding: 10px;
|
|
|
|
|
font-size: 14px;
|
2021-05-13 10:56:04 +08:00
|
|
|
|
> span {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
> span:nth-of-type(2) {
|
|
|
|
|
color: $theme_color;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-20 17:45:57 +08:00
|
|
|
|
table {
|
2021-08-12 18:39:34 +08:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
margin-left: 20px;
|
2021-08-20 17:45:57 +08:00
|
|
|
|
tr {
|
2021-08-12 18:39:34 +08:00
|
|
|
|
height: 40px;
|
|
|
|
|
padding: 10px;
|
2021-08-20 17:45:57 +08:00
|
|
|
|
td:nth-child(1) {
|
2021-08-12 18:39:34 +08:00
|
|
|
|
width: 120px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-20 17:45:57 +08:00
|
|
|
|
.bill-detail-price {
|
2023-03-31 18:16:33 +08:00
|
|
|
|
width: 1200px;
|
|
|
|
|
margin: 10px 0;
|
2021-08-12 18:39:34 +08:00
|
|
|
|
padding: 10px;
|
2023-03-31 18:16:33 +08:00
|
|
|
|
/deep/ span {
|
2021-08-12 18:39:34 +08:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 200px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
2021-08-20 17:45:57 +08:00
|
|
|
|
.theme_color {
|
2021-08-12 18:39:34 +08:00
|
|
|
|
color: $theme_color;
|
|
|
|
|
}
|
2021-08-20 17:45:57 +08:00
|
|
|
|
.increase-color {
|
2021-08-12 18:39:34 +08:00
|
|
|
|
color: green;
|
|
|
|
|
}
|
2023-03-31 18:16:33 +08:00
|
|
|
|
div{
|
|
|
|
|
|
|
|
|
|
margin: 20px 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.bill-item{
|
|
|
|
|
justify-content: flex-start;
|
2021-08-12 18:39:34 +08:00
|
|
|
|
}
|
2021-05-13 10:56:04 +08:00
|
|
|
|
</style>
|