Explorar o código

app会员统计

xgb hai 1 semana
pai
achega
ebdd389d95

+ 23 - 0
src/api/app/statistics/memberReport.js

@@ -0,0 +1,23 @@
+import request from "@/utils/request"
+
+/**
+ * 获取会员统计数据(按销售公司)
+ */
+export function getMemberReport(query) {
+  return request({
+    url: '/app/statistics/memberReport',
+    method: 'get',
+    params: query
+  })
+}
+
+/**
+ * 导出会员统计数据
+ */
+export function exportMemberReport(query) {
+  return request({
+    url: '/app/statistics/exportMemberReport',
+    method: 'get',
+    params: query
+  })
+}

+ 326 - 0
src/views/app/statistics/memberReport/index.vue

@@ -0,0 +1,326 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="85px">
+<!--      <el-form-item label="公司名" prop="companyId">-->
+<!--        <el-select filterable v-model="queryParams.companyId" placeholder="请选择公司名"-->
+<!--                   clearable size="small">-->
+<!--          <el-option-->
+<!--            v-for="item in companys"-->
+<!--            :key="item.companyId"-->
+<!--            :label="item.companyName"-->
+<!--            :value="item.companyId"-->
+<!--          />-->
+<!--        </el-select>-->
+<!--      </el-form-item>-->
+      <el-form-item label="统计时间" prop="createTime">
+        <el-date-picker v-model="createTime" size="small" style="width: 220px" value-format="yyyy-MM-dd"
+                        type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"
+                        @change="xdChange"></el-date-picker>
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
+      </el-form-item>
+    </el-form>
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          :loading="exportLoading"
+          @click="handleExport"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+    <el-table height="500" v-loading="loading" border :data="memberReportList">
+      <el-table-column label="销售公司" align="center" prop="companyName" width="200px"/>
+      <el-table-column label="会员总数" align="center" prop="totalMemberCount"/>
+      <el-table-column label="APP会员数" align="center" prop="appMemberCount"/>
+      <el-table-column label="APP新增会员数" align="center" prop="newMemberCount"/>
+    </el-table>
+    <div class="total-summary">
+      <span class="total-title">总计:</span>
+      <span class="total-item">会员总数:{{ calculatedTotalData.totalMemberCount }}</span>
+      <span class="total-item">APP会员数:{{ calculatedTotalData.appMemberCount }}</span>
+      <span class="total-item">新增会员数:{{ calculatedTotalData.newMemberCount }}</span>
+    </div>
+  </div>
+</template>
+
+<script>
+import { getCompanyList } from "@/api/company/company";
+import Treeselect from "@riophae/vue-treeselect";
+import "@riophae/vue-treeselect/dist/vue-treeselect.css";
+import { getTask } from "@/api/common";
+import { getMemberReport, exportMemberReport } from "@/api/app/statistics/memberReport";
+
+export default {
+  name: "MemberReport",
+  components: { Treeselect },
+  data() {
+    return {
+      normalizer: function(node) {
+        return {
+          id: node.id || node.dictValue,
+          label: node.label || node.dictLabel,
+          children: node.children
+        }
+      },
+      calculatedTotalData: {
+        totalMemberCount: 0,
+        appMemberCount: 0,
+        newMemberCount: 0
+      },
+      companys: [],
+      deptOptions: [],
+      companyId: undefined,
+      show: {
+        open: false,
+      },
+      actName: "2",
+      loading: true,
+      startTime: null,
+      exportLoading: false,
+      ids: [],
+      createTime: null,
+      single: true,
+      multiple: true,
+      showSearch: true,
+      endTime: null,
+      memberReportList: [],
+      title: "",
+      open: false,
+      isPayOptions: [],
+      statusOptions: [],
+      refundStatusOptions: [],
+      packageSubTypeOptions: [],
+      payTypeOptions: [],
+      deliveryPayStatusOptions: [],
+      deliveryStatusOptions: [],
+      queryParams: {
+        companyId: null,
+        sTime: null,
+        eTime: null
+      },
+      form: {},
+      rules: {}
+    };
+  },
+  created() {
+    const today = new Date();
+    const formatDate = (date) => {
+      const year = date.getFullYear();
+      const month = String(date.getMonth() + 1).padStart(2, '0');
+      const day = String(date.getDate()).padStart(2, '0');
+      return `${year}-${month}-${day}`;
+    };
+    const todayStr = formatDate(today);
+    this.createTime = [todayStr, todayStr];
+    this.queryParams.sTime = todayStr;
+    this.queryParams.eTime = todayStr;
+
+    getCompanyList().then(response => {
+      this.companys = response.data;
+      if (this.companys != null && this.companys.length > 0) {
+        this.companyId = this.companys[0].companyId;
+      }
+      this.companys.push({ companyId: "-1", companyName: "无" })
+      this.getList();
+    });
+  },
+  methods: {
+    getList() {
+      this.loading = true;
+
+      const params = { ...this.queryParams };
+
+      if (params.sTime) {
+        params.sTime = params.sTime + ' 00:00:00';
+      }
+      if (params.eTime) {
+        params.eTime = params.eTime + ' 23:59:59';
+      }
+
+      getMemberReport(params).then(response => {
+        this.memberReportList = response.rows || response.data || [];
+        this.calculateTotals();
+        this.loading = false;
+        setTimeout(() => {
+          this.$forceUpdate();
+        }, 100);
+      }).catch(() => {
+        this.loading = false;
+      });
+    },
+    calculateTotals() {
+      this.calculatedTotalData = {
+        totalMemberCount: 0,
+        appMemberCount: 0,
+        newMemberCount: 0
+      };
+
+      this.memberReportList.forEach(item => {
+        this.calculatedTotalData.totalMemberCount += Number(item.totalMemberCount) || 0;
+        this.calculatedTotalData.appMemberCount += Number(item.appMemberCount) || 0;
+        this.calculatedTotalData.newMemberCount += Number(item.newMemberCount) || 0;
+      });
+    },
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    reset() {
+      this.form = {
+        orderId: null,
+        orderSn: null,
+        userId: null,
+        doctorId: null,
+        packageId: null,
+        packageName: null,
+        payMoney: null,
+        isPay: null,
+        days: null,
+        status: 0,
+        startTime: null,
+        finishTime: null,
+        createTime: null
+      };
+      this.resetForm("form");
+    },
+    handleQuery() {
+      this.getList();
+    },
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.createTime = null;
+      this.startTime = null;
+      this.endTime = null;
+
+      this.queryParams = {
+        companyId: null,
+        sTime: null,
+        eTime: null
+      };
+
+      this.handleQuery();
+    },
+    xdChange() {
+      if (this.createTime != null) {
+        this.queryParams.sTime = this.createTime[0];
+        this.queryParams.eTime = this.createTime[1];
+      } else {
+        this.queryParams.sTime = null;
+        this.queryParams.eTime = null;
+      }
+    },
+    handleExport() {
+      const now = new Date();
+      const year = now.getFullYear();
+      const month = String(now.getMonth() + 1).padStart(2, '0');
+      const firstDay = `${year}-${month}-01`;
+      const lastDay = new Date(year, now.getMonth() + 1, 0);
+      const lastDayStr = `${year}-${month}-${String(lastDay.getDate()).padStart(2, '0')}`;
+
+      const exportParams = {
+        ...this.queryParams,
+        sTime: this.queryParams.sTime || firstDay,
+        eTime: this.queryParams.eTime || lastDayStr
+      };
+
+      if (exportParams.sTime) {
+        exportParams.sTime = exportParams.sTime + ' 00:00:00';
+      }
+      if (exportParams.eTime) {
+        exportParams.eTime = exportParams.eTime + ' 23:59:59';
+      }
+
+      this.$confirm('是否确认导出会员统计报表', "警告", {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning"
+      }).then(() => {
+        this.exportLoading = true;
+        return exportMemberReport(exportParams);
+      }).then(response => {
+        this.download(response.msg);
+        this.exportLoading = false;
+      }).catch(() => {
+        this.exportLoading = false;
+      });
+    },
+    endChange() {
+      if (this.endTime != null) {
+        this.queryParams.endStartTime = this.endTime[0];
+        this.queryParams.endEndTime = this.endTime[1];
+      } else {
+        this.queryParams.endStartTime = null;
+        this.queryParams.endEndTime = null;
+      }
+    }
+  }
+};
+</script>
+
+<style scoped>
+.total-summary {
+  margin-top: 15px;
+  padding: 15px 20px;
+  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7f4 100%);
+  border: 1px solid #dcdfe6;
+  border-radius: 4px;
+  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
+  display: flex;
+  flex-wrap: wrap;
+  align-items: center;
+}
+
+.total-title {
+  font-weight: bold;
+  font-size: 16px;
+  color: #303133;
+  margin-right: 20px;
+  flex-shrink: 0;
+}
+
+.total-item {
+  margin-right: 25px;
+  padding: 5px 10px;
+  background: white;
+  border-radius: 3px;
+  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
+  display: inline-block;
+  margin-bottom: 5px;
+  font-size: 13px;
+  color: #606266;
+}
+
+.total-item::before {
+  content: "";
+  display: inline-block;
+  width: 3px;
+  height: 3px;
+  background: #409eff;
+  border-radius: 50%;
+  margin-right: 5px;
+  vertical-align: middle;
+}
+
+@media (max-width: 768px) {
+  .total-summary {
+    flex-direction: column;
+    align-items: flex-start;
+  }
+
+  .total-title {
+    margin-bottom: 10px;
+  }
+
+  .total-item {
+    margin-right: 10px;
+    margin-bottom: 8px;
+  }
+}
+</style>