123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498 |
- <template>
- <div class="order-statistics-container">
- <el-card class="search-card">
- <div class="search-header">
- <span class="title">订单统计</span>
- <div class="search-actions">
- <el-date-picker
- v-model="dateRange"
- type="daterange"
- align="right"
- unlink-panels
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- :picker-options="pickerOptions"
- @change="handleDateChange"
- />
- <el-button type="primary" @click="handleSearch" :loading="loading">查询</el-button>
- </div>
- </div>
- </el-card>
- <el-row :gutter="20" class="statistics-row">
- <el-col :span="6">
- <el-card shadow="hover">
- <div class="statistic-item">
- <div class="statistic-title">订单总量</div>
- <div class="statistic-value">{{ statistics.orderCount }}</div>
- </div>
- </el-card>
- </el-col>
- <el-col :span="6">
- <el-card shadow="hover">
- <div class="statistic-item" @click="fetchOrderDetails" style="cursor: pointer;">
- <div class="statistic-title">总金额</div>
- <div class="statistic-value">¥{{ statistics.totalAmount | formatMoney }}</div>
- </div>
- </el-card>
- </el-col>
- <el-col :span="6">
- <el-card shadow="hover">
- <div class="statistic-item">
- <div class="statistic-title">成交率</div>
- <div class="statistic-value">{{ statistics.successRate }}%</div>
- </div>
- </el-card>
- </el-col>
- <el-col :span="6">
- <el-card shadow="hover">
- <div class="statistic-item">
- <div class="statistic-title">退货率</div>
- <div class="statistic-value">{{ statistics.returnRate }}%</div>
- </div>
- </el-card>
- </el-col>
- </el-row>
- <!-- 订单详情对话框 -->
- <el-dialog
- title="订单详情"
- :visible.sync="detailModalVisible"
- width="85%"
- top="5vh"
- class="clean-dialog"
- >
- <div class="clean-container">
- <el-table
- :data="orderDetails"
- border
- style="width: 100%"
- v-loading="detailLoading"
- height="70vh"
- class="clean-table"
- >
- <el-table-column
- label="订单号"
- align="center"
- prop="orderCode"
- width="180"
- header-align="center"
- />
- <el-table-column
- label="所属公司"
- align="center"
- prop="companyName"
- header-align="center"
- show-overflow-tooltip
- />
- <el-table-column
- label="用户/收件人"
- align="center"
- header-align="center"
- width="150"
- >
- <template slot-scope="scope">
- <div class="compact-cell">
- <div>{{ scope.row.nickname || '-' }}</div>
- <div class="secondary-text">{{ scope.row.realName || '-' }}</div>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- label="金额(元)"
- align="center"
- header-align="center"
- width="150"
- >
- <template slot-scope="scope">
- <div class="compact-cell">
- <div>总价: {{ scope.row.totalPrice ? scope.row.totalPrice.toFixed(2) : '0.00' }}</div>
- <div>实付: {{ scope.row.payPrice ? scope.row.payPrice.toFixed(2) : '0.00' }}</div>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- label="时间"
- align="center"
- header-align="center"
- width="220"
- >
- <template slot-scope="scope">
- <div class="compact-cell">
- <div>{{ scope.row.createTime }}</div>
- <div class="secondary-text">{{ scope.row.payTime || '未支付' }}</div>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- label="支付/类型"
- align="center"
- header-align="center"
- width="150"
- >
- <template slot-scope="scope">
- <div class="compact-cell">
- <el-tag
- size="small"
- style="display:block;margin:0 auto 4px;width:fit-content"
- v-for="item in payTypeOptions"
- v-if="scope.row.payType==item.dictValue"
- >{{item.dictLabel}}</el-tag>
- <el-tag
- size="small"
- style="display:block;margin:0 auto;width:fit-content"
- v-for="item in orderTypeOptions"
- v-if="scope.row.orderType==item.dictValue"
- >{{item.dictLabel}}</el-tag>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- label="状态"
- align="center"
- header-align="center"
- width="150"
- >
- <template slot-scope="scope">
- <div class="compact-cell">
- <el-tag
- size="small"
- style="display:block;margin:0 auto 4px;width:fit-content"
- v-for="item in statusOptions"
- v-if="scope.row.status==item.dictValue"
- >{{item.dictLabel}}</el-tag>
- <el-tag
- size="small"
- style="display:block;margin:0 auto;width:fit-content"
- v-for="item in deliveryStatusOptions"
- v-if="scope.row.deliveryStatus==item.dictValue"
- >{{item.dictLabel}}</el-tag>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- label="操作"
- fixed="right"
- width="90"
- align="center"
- header-align="center"
- >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- style="color:#409EFF;padding:5px 0"
- @click="handleDetails(scope.row)"
- v-hasPermi="['store:storeOrder:query']"
- >详情</el-button>
- </template>
- </el-table-column>
- </el-table>
- <div style="margin-top:15px">
- <pagination
- v-show="pagination.total>0"
- :total="pagination.total"
- :page.sync="pagination.currentPage"
- :limit.sync="pagination.pageSize"
- @pagination="fetchOrderDetails"
- />
- </div>
- </div>
- <el-drawer
- :title="show.title"
- :visible.sync="show.open"
- size="65%"
- :modal="false"
- :wrapper-closable="false"
- :append-to-body="true"
- custom-class="safe-drawer"
- >
- <product-order ref="order" />
- </el-drawer>
- </el-dialog>
- </div>
- </template>
- <script>
- import { getOrderStatistics } from "@/api/hisStore/statistics";
- import { listStoreOrder } from "@/api/hisStore/storeOrder";
- import productOrder from "../components/productOrder";
- export default {
- components: { productOrder },
- name: 'OrderStatistics',
- data() {
- return {
- deliveryPayStatusOptions:[],
- deliveryStatusOptions:[],
- orderTypeOptions:[],
- payTypeOptions:[],
- show:{
- open:false,
- title:"订单详情"
- },
- statusOptions:[],
- dateRange: [],
- pickerOptions: {
- shortcuts: [{
- text: '最近一周',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
- picker.$emit('pick', [start, end]);
- }
- }, {
- text: '最近一个月',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
- picker.$emit('pick', [start, end]);
- }
- }, {
- text: '最近三个月',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
- picker.$emit('pick', [start, end]);
- }
- }]
- },
- loading: false,
- detailLoading: false,
- statistics: {
- orderCount: 0,
- totalAmount: 0,
- successRate: 0,
- returnRate: 0
- },
- orderDetails: [],
- detailModalVisible: false,
- pagination: {
- currentPage: 1,
- pageSize: 10,
- total: 0
- },
- };
- },
- filters: {
- formatMoney(value) {
- if (!value) return '0.00';
- return parseFloat(value).toFixed(2).replace(/\B(?=(\d{3})+(?!\d))/g, ',');
- }
- },
- created() {
- this.getDicts("store_order_type").then((response) => {
- this.orderTypeOptions = response.data;
- });
- this.getDicts("user_status").then((response) => {
- this.userStatusOptions = response.data;
- });
- this.getDicts("store_pay_type").then((response) => {
- this.payTypeOptions = response.data;
- });
- this.getDicts("store_order_status").then((response) => {
- this.statusOptions = response.data;
- });
- this.getDicts("store_order_delivery_status").then((response) => {
- this.deliveryStatusOptions = response.data;
- });
- this.getDicts("store_delivery_pay_status").then((response) => {
- this.deliveryPayStatusOptions = response.data;
- });
- // 默认查询最近30天数据
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
- this.dateRange = [start, end];
- this.fetchStatistics();
- },
- methods: {
- handleDetails(row){
- this.show.open=true;
- const orderId = row.id ;
- setTimeout(() => {
- this.$refs.order.getOrder(orderId);
- }, 500);
- },
- /**
- * 格式化日期(内置方法,替代外部工具函数)
- * @param {Date|string} date 日期对象或字符串
- * @param {string} [fmt='yyyy-MM-dd HH:mm:ss'] 格式字符串
- * @returns {string} 格式化后的日期字符串
- */
- formatDate(date, fmt = 'yyyy-MM-dd HH:mm:ss') {
- if (!date) return '';
- if (typeof date === 'string') {
- date = new Date(date.replace(/-/g, '/'));
- }
- if (!(date instanceof Date)) {
- date = new Date(date);
- }
- const o = {
- 'M+': date.getMonth() + 1, // 月份
- 'd+': date.getDate(), // 日
- 'H+': date.getHours(), // 小时
- 'm+': date.getMinutes(), // 分
- 's+': date.getSeconds(), // 秒
- 'q+': Math.floor((date.getMonth() + 3) / 3), // 季度
- 'S': date.getMilliseconds() // 毫秒
- };
- if (/(y+)/.test(fmt)) {
- fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length));
- }
- for (const k in o) {
- if (new RegExp('(' + k + ')').test(fmt)) {
- fmt = fmt.replace(
- RegExp.$1,
- RegExp.$1.length === 1 ? o[k] : ('00' + o[k]).substr(('' + o[k]).length)
- );
- }
- }
- return fmt;
- },
- handleDateChange(val) {
- this.dateRange = val;
- this.fetchStatistics();
- },
- handleSearch() {
- this.fetchStatistics();
- },
- async fetchStatistics() {
- if (!this.dateRange || this.dateRange.length !== 2) {
- this.$message.warning('请选择日期范围');
- return;
- }
- this.loading = true;
- try {
- const params = {
- startTime: this.formatDate(this.dateRange[0], 'yyyy-MM-dd'),
- endTime: this.formatDate(this.dateRange[1], 'yyyy-MM-dd')
- };
- const response = await getOrderStatistics(params);
- this.statistics = response.data;
- } catch (error) {
- this.$message.error('获取统计数据失败');
- } finally {
- this.loading = false;
- }
- },
- async fetchOrderDetails() {
- if (!this.dateRange || this.dateRange.length !== 2) return;
- this.detailLoading = true;
- try {
- const params = {
- createTimeRange: this.formatDate(this.dateRange[0], 'yyyy-MM-dd')+"--"+this.formatDate(this.dateRange[1], 'yyyy-MM-dd'),
- pageNum: this.pagination.currentPage,
- pageSize: this.pagination.pageSize,
- paidStatus:1
- };
- const response = await listStoreOrder(params);
- this.orderDetails = response.rows;
- this.pagination.total = response.total;
- this.detailModalVisible = true;
- } catch (error) {
- this.$message.error('获取订单详情失败');
- } finally {
- this.detailLoading = false;
- }
- },
- handleSizeChange(val) {
- this.pagination.pageSize = val;
- this.fetchOrderDetails();
- },
- handleCurrentChange(val) {
- this.pagination.currentPage = val;
- this.fetchOrderDetails();
- }
- }
- };
- </script>
- <style scoped>
- .order-statistics-container {
- padding: 20px;
- }
- .search-card {
- margin-bottom: 20px;
- }
- .search-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .title {
- font-size: 18px;
- font-weight: bold;
- }
- .statistics-row {
- margin-bottom: 20px;
- }
- .statistic-item {
- padding: 10px;
- }
- .statistic-title {
- font-size: 14px;
- color: #999;
- margin-bottom: 10px;
- }
- .statistic-value {
- font-size: 24px;
- font-weight: bold;
- margin-bottom: 10px;
- }
- .statistic-compare .up {
- color: #f56c6c;
- margin-left: 5px;
- }
- .statistic-compare .down {
- color: #67c23a;
- margin-left: 5px;
- }
- .clean-dialog {
- border-radius: 8px;
- }
- .clean-table .el-table__header th {
- background-color: #f8f8f9;
- }
- .compact-cell {
- padding: 4px 0;
- line-height: 1.4;
- }
- .secondary-text {
- color: #909399;
- font-size: 0.9em;
- }
- </style>
|