480 lines
14 KiB
Vue
480 lines
14 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<!-- <el-tabs v-model="orderType" @tab-click="getTableData">
|
|
<el-tab-pane label="收款" name="1"></el-tab-pane>
|
|
<el-tab-pane label="销量" name="2"></el-tab-pane>
|
|
</el-tabs> -->
|
|
<div class="head-container">
|
|
<el-form :model="query" inline label-position="left">
|
|
<template v-if="orderType == 2">
|
|
<el-form-item>
|
|
<el-input placeholder="商品名称" v-model="query.productName" />
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
<el-select v-model="storeId" placeholder="选择分店" style="width: 200px; margin-right: 10px">
|
|
<el-option v-for="item in branchList" :key="item.shopId" :label="item.shopName" :value="item.shopId" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-select v-model="query.prodCategoryId" placeholder="商品分类" style="width: 140px">
|
|
<el-option :label="item.name" :value="item.id" v-for="item in categorys" :key="item.id"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</template>
|
|
<el-form-item>
|
|
<el-radio-group v-model="timeValue" @change="timeChange">
|
|
<el-radio-button value="">全部</el-radio-button>
|
|
<el-radio-button value="0">今天</el-radio-button>
|
|
<el-radio-button value="-1">昨天</el-radio-button>
|
|
<el-radio-button value="-7">最近7天</el-radio-button>
|
|
<el-radio-button value="-30">最近30天</el-radio-button>
|
|
<el-radio-button value="week">本周</el-radio-button>
|
|
<el-radio-button value="month">本月</el-radio-button>
|
|
<el-radio-button value="custom">自定义</el-radio-button>
|
|
</el-radio-group>
|
|
<el-date-picker class="u-m-l-10" v-model="query.createdAt" type="daterange" range-separator="至"
|
|
start-placeholder="开始日期" end-placeholder="结束日期" value-format="YYYY-MM-DD"
|
|
v-if="timeValue == 'custom'"></el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" @click="getTableData">查询</el-button>
|
|
<el-button @click="resetHandle">重置</el-button>
|
|
<el-button icon="download" v-loading="downloadLoading" @click="downloadHandle">
|
|
<span v-if="!downloadLoading">导出Excel</span>
|
|
<span v-else>下载中...</span>
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</div>
|
|
<div class="head-container">
|
|
<div class="collect_wrap">
|
|
<div class="item">
|
|
<div class="icon_wrap" style="--bg-color: #c978ee">
|
|
<el-icon color="#fff">
|
|
<Coin />
|
|
</el-icon>
|
|
</div>
|
|
<div class="info">
|
|
<div class="m">¥{{ payCount.totalAmount || 0 }}</div>
|
|
<div class="t">总金额</div>
|
|
</div>
|
|
</div>
|
|
<div class="item">
|
|
<div class="icon_wrap" style="--bg-color: #c978ee">
|
|
<el-icon color="#fff">
|
|
<Coin />
|
|
</el-icon>
|
|
</div>
|
|
<div class="info">
|
|
<div class="m">¥{{ payCount.refundAmount || 0 }}</div>
|
|
<div class="t">退款金额</div>
|
|
</div>
|
|
</div>
|
|
<div class="item">
|
|
<div class="icon_wrap" style="--bg-color: #c978ee">
|
|
<el-icon color="#fff">
|
|
<ShoppingCartFull />
|
|
</el-icon>
|
|
</div>
|
|
<div class="info">
|
|
<div class="m">{{ payCount.saleCount || 0 }}</div>
|
|
<div class="t">总数量</div>
|
|
</div>
|
|
</div>
|
|
<div class="item">
|
|
<div class="icon_wrap" style="--bg-color: #c978ee">
|
|
<el-icon color="#fff">
|
|
<ShoppingCart />
|
|
</el-icon>
|
|
</div>
|
|
<div class="info">
|
|
<div class="m">{{ payCount.refundCount || 0 }}</div>
|
|
<div class="t">退单量</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="head-container">
|
|
<el-table :data="tableData.data" v-loading="tableData.loading" v-if="orderType == 1">
|
|
<el-table-column label="日期" prop="tradeDay"></el-table-column>
|
|
<el-table-column label="营业额" prop="total">
|
|
<template v-slot="scope">¥{{ scope.row.total }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="销售额" prop="total">
|
|
<template v-slot="scope">
|
|
¥{{ scope.row.total }}|{{ totalfilter(scope.row.refund) }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="微信小程序支付" prop="wxLite">
|
|
<template v-slot="scope">¥{{ scope.row.wxLite }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="扫码支付金额" prop="scanCode">
|
|
<template v-slot="scope">¥{{ scope.row.scanCode }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="现金支付金额" prop="cash">
|
|
<template v-slot="scope">¥{{ scope.row.cash }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="会员充值" prop="cash">
|
|
<template v-slot="scope">¥{{ scope.row.recharge }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="会员支付" prop="cash">
|
|
<template v-slot="scope">¥{{ scope.row.deposit }}</template>
|
|
</el-table-column>
|
|
|
|
<!-- <el-table-column label="充值金额" prop="cash">
|
|
<template v-slot="scope">
|
|
¥{{ scope.row.recharge }}
|
|
</template>
|
|
</el-table-column> -->
|
|
<el-table-column label="退款金额" prop="cash">
|
|
<template v-slot="scope">¥{{ scope.row.refund }}</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<el-table :data="tableData.data" v-loading="tableData.loading" v-if="orderType == 2">
|
|
<!-- <el-table-column label="商品分类" prop="cateName"></el-table-column>
|
|
<el-table-column label="商品描述" prop="productSkuName"></el-table-column>
|
|
<el-table-column label="单价" prop="price"></el-table-column> -->
|
|
<el-table-column label="商品名称" prop="productName"></el-table-column>
|
|
<el-table-column label="销量" prop="saleCount"></el-table-column>
|
|
<el-table-column label="销售金额" prop="saleAmount">
|
|
<template v-slot="scope">¥{{ scope.row.saleAmount }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="退单量" prop="refundCount"></el-table-column>
|
|
<el-table-column label="退款金额" prop="refundAmount">
|
|
<template v-slot="scope">¥{{ scope.row.refundAmount }}</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
<div class="head-container">
|
|
<el-pagination :total="tableData.total" :current-page="tableData.page" :page-size="tableData.size"
|
|
@current-change="paginationChange" @size-change="sizeChange"
|
|
layout="total, sizes, prev, pager, next, jumper"></el-pagination>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import saleSummaryApi from "@/api/order/sale-summary";
|
|
import categoryApi from "@/api/product/productclassification";
|
|
import dayjs from "dayjs";
|
|
import { downloadFile } from "@/utils/index";
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
timeValue: "",
|
|
resetQuery: null,
|
|
orderType: "2",
|
|
categorys: [],
|
|
query: {
|
|
createdAt: [],
|
|
productName: "",
|
|
prodCategoryId: "",
|
|
},
|
|
tableData: {
|
|
data: [],
|
|
page: 1,
|
|
size: 10,
|
|
loading: false,
|
|
total: 0,
|
|
},
|
|
downloadLoading: false,
|
|
payCount: "",
|
|
payCountTotal: 0,
|
|
branchList: [],
|
|
storeId: null,
|
|
};
|
|
},
|
|
filters: {
|
|
timeFilter(time) {
|
|
return dayjs(time).format("YYYY-MM-DD HH:mm:ss");
|
|
},
|
|
},
|
|
mounted() {
|
|
this.resetQuery = { ...this.query };
|
|
this.getTableData();
|
|
this.getCategory();
|
|
this.geiShopList();
|
|
},
|
|
methods: {
|
|
/**
|
|
* 获取分店列表
|
|
*/
|
|
async geiShopList() {
|
|
let res = await ShopApi.getBranchList()
|
|
this.branchList = res;
|
|
},
|
|
totalfilter(item, d) {
|
|
let num = item + d;
|
|
return num.toFixed(2);
|
|
},
|
|
// 获取商品分类
|
|
async getCategory() {
|
|
try {
|
|
const res = await categoryApi.getList({
|
|
page: 1,
|
|
size: 200,
|
|
orderBy: "name asc",
|
|
});
|
|
this.categorys = res;
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
},
|
|
// 获取订单汇总
|
|
async daycount() {
|
|
try {
|
|
const res = await saleSummaryApi.count({
|
|
beginDate: this.query.createdAt[0],
|
|
endDate: this.query.createdAt[1],
|
|
prodCategoryId: this.query.prodCategoryId,
|
|
productName: this.query.productName,
|
|
|
|
type: this.orderType,
|
|
});
|
|
this.payCount = res;
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
},
|
|
// 导出Excel
|
|
async downloadHandle() {
|
|
try {
|
|
this.downloadLoading = true;
|
|
const file = await saleSummaryApi.export({
|
|
beginDate: this.query.createdAt[0],
|
|
endDate: this.query.createdAt[1],
|
|
prodCategoryId: this.query.prodCategoryId,
|
|
productName: this.query.productName,
|
|
});
|
|
downloadFile(file, "数据", "xlsx");
|
|
this.downloadLoading = false;
|
|
} catch (error) {
|
|
this.downloadLoading = false;
|
|
console.log(error);
|
|
}
|
|
},
|
|
// 重置查询
|
|
resetHandle() {
|
|
this.timeValue = "";
|
|
this.query = { ...this.resetQuery };
|
|
this.page = 1;
|
|
this.getTableData();
|
|
},
|
|
// 分页大小改变
|
|
sizeChange(e) {
|
|
this.tableData.size = e;
|
|
this.getTableData();
|
|
},
|
|
// 分页回调
|
|
paginationChange(e) {
|
|
this.tableData.page = e;
|
|
this.getTableData();
|
|
},
|
|
async getTableData() {
|
|
this.tableData.loading = true;
|
|
try {
|
|
this.daycount();
|
|
const res = await saleSummaryApi.page({
|
|
page: this.tableData.page,
|
|
size: this.tableData.size,
|
|
type: this.orderType,
|
|
beginDate: this.query.createdAt[0],
|
|
endDate: this.query.createdAt[1],
|
|
productName: this.query.productName,
|
|
prodCategoryId: this.query.prodCategoryId,
|
|
});
|
|
this.tableData.loading = false;
|
|
this.tableData.data = res.records;
|
|
this.tableData.total = res.totalRow;
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
},
|
|
// 切换时间
|
|
timeChange(e) {
|
|
const format = ["YYYY-MM-DD 00:00:00", "YYYY-MM-DD 23:59:59"];
|
|
switch (e) {
|
|
case "":
|
|
// 全部
|
|
this.query.createdAt = [];
|
|
break;
|
|
case "0":
|
|
// 今天
|
|
this.query.createdAt = [dayjs().format(format[0]), dayjs().format(format[1])];
|
|
break;
|
|
case "-1":
|
|
// 昨天
|
|
this.query.createdAt = [
|
|
dayjs().add(-1, "d").format(format[0]),
|
|
dayjs().add(-1, "d").format(format[1]),
|
|
];
|
|
break;
|
|
case "-7":
|
|
// 最近7天
|
|
this.query.createdAt = [
|
|
dayjs().add(-7, "d").format(format[0]),
|
|
dayjs().format(format[1]),
|
|
];
|
|
break;
|
|
case "-30":
|
|
// 最近7天
|
|
this.query.createdAt = [
|
|
dayjs().add(-30, "d").format(format[0]),
|
|
dayjs().format(format[1]),
|
|
];
|
|
break;
|
|
case "week":
|
|
// 本周
|
|
this.query.createdAt = [
|
|
dayjs().startOf("week").format(format[0]),
|
|
dayjs().endOf("week").format(format[1]),
|
|
];
|
|
break;
|
|
case "month":
|
|
// 本周
|
|
this.query.createdAt = [
|
|
dayjs().startOf("month").format(format[0]),
|
|
dayjs().endOf("month").format(format[1]),
|
|
];
|
|
break;
|
|
case "custom":
|
|
// 自定义
|
|
this.query.createdAt = [];
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.collect_wrap {
|
|
display: flex;
|
|
gap: 14px;
|
|
justify-content: space-between;
|
|
|
|
.item:nth-child(1) {
|
|
background-image: url(../../assets/images/home/data_forms4.png);
|
|
}
|
|
|
|
.item:nth-child(2) {
|
|
background-image: url(../../assets/images/home/data_forms3.png);
|
|
}
|
|
|
|
.item:nth-child(3) {
|
|
background-image: url(../../assets/images/home/data_forms2.png);
|
|
}
|
|
|
|
.item:nth-child(4) {
|
|
background-image: url(../../assets/images/home/data_forms1.png);
|
|
}
|
|
|
|
.item {
|
|
background-size: 100% 100%;
|
|
width: 255px;
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: #f5f5f5;
|
|
padding: 20px;
|
|
|
|
.icon_wrap {
|
|
$size: 34px;
|
|
$border: 6px;
|
|
width: $size;
|
|
height: $size;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: var(--bg-color);
|
|
border-radius: 50%;
|
|
position: relative;
|
|
|
|
&::after {
|
|
content: "";
|
|
width: $size + $border;
|
|
height: $size + $border;
|
|
border-radius: 50%;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
background-color: var(--bg-color);
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.icon {
|
|
font-size: 16px;
|
|
color: #fff;
|
|
}
|
|
|
|
.img {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
}
|
|
|
|
.info {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-left: 10px;
|
|
|
|
.m {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.t {
|
|
font-size: 12px;
|
|
color: #999;
|
|
padding-top: 4px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.refund {
|
|
color: #ff9731;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.table_order_info {
|
|
.order_no {
|
|
color: #999;
|
|
}
|
|
|
|
.type {
|
|
color: #e6a23c;
|
|
}
|
|
}
|
|
|
|
.goods_info {
|
|
.row {
|
|
display: flex;
|
|
|
|
&:not(:first-child) {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.cover {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
.info {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-left: 10px;
|
|
|
|
.sku {
|
|
color: #999;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|