123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522 |
- <template>
- <div class="m-container">
- <!-- 搜索标题 -->
- <saveform
- :inline="true"
- ref="searchForm"
- class="searchForm"
- saveKey="exerciseDuration"
- :model.sync="searchForm"
- >
- <el-form-item prop="dates">
- <el-date-picker
- @change="changeWeek"
- :clearable="false"
- v-model="searchForm.dates"
- value-format="yyyy-MM-dd"
- :picker-options="{ firstDayOfWeek: 1 }"
- type="daterange"
- style="width: 405px"
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item>
- <el-button @click="search" type="danger">搜索</el-button>
- <el-button @click="onReSet" type="primary">重置</el-button>
- </el-form-item>
- </saveform>
- <!-- 分组添加柱状图 -->
- <el-tabs v-model="activeName" class="submitTab">
- <el-tab-pane label="人数图表" name="first">
- <ve-histogram
- v-if="activeName == 'first'"
- style="width: 100%"
- height="350px"
- :data="chartData"
- :data-empty="dataEmpty"
- :extend="chartExtend"
- :legend="legend"
- :data-zoom="dataZoom"
- ></ve-histogram>
- </el-tab-pane>
- <el-tab-pane label="比例图标" name="second">
- <ve-histogram
- v-if="activeName == 'second'"
- style="width: 100%"
- height="350px"
- :data="scaleCharData"
- :data-empty="dataEmpty"
- :extend="scalChartExtend"
- :legend="legend"
- :data-zoom="dataZoom"
- ></ve-histogram>
- </el-tab-pane>
- </el-tabs>
- <el-button
- type="primary"
- @click="exportQuestion"
- style="margin: 16px 0"
- v-permission="'export/managerDownload/num'"
- >导出</el-button
- >
- <div class="tableWrap">
- <el-table
- :data="tableList"
- :header-cell-style="{ background: '#EDEEF0', color: '#444' }"
- >
- <el-table-column width="120px" align="center" prop="id" label="排名">
- <template slot-scope="scope">
- <div>
- {{ scope.$index + 1 }}
- </div>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- prop="organName"
- label="分部名称"
- ></el-table-column>
- <el-table-column align="center" prop="normalNum" label="会员人数">
- <template slot-scope="scope">
- <div>{{ scope.row.normalNum }}人</div>
- </template>
- </el-table-column>
- <el-table-column align="center" prop="trainStudentNum" label="练习人数">
- <template slot-scope="scope">
- <div>{{ scope.row.trainStudentNum }}人</div>
- </template></el-table-column
- >
- <el-table-column align="center" prop="trainRate" label="练习率">
- <template slot-scope="scope">
- <div>{{ scope.row.trainRate }}%</div>
- </template>
- </el-table-column>
- <el-table-column align="center" prop="id" label="≤60分钟">
- <template slot-scope="scope">
- <div>{{ scope.row.train1 }}人</div>
- </template></el-table-column
- >
- <el-table-column align="center" prop="id" label="60~120分钟">
- <template slot-scope="scope">
- <div>{{ scope.row.train2 }}人</div>
- </template>
- </el-table-column>
- <el-table-column align="center" prop="id" label="120~240分钟">
- <template slot-scope="scope">
- <div>{{ scope.row.train3 }}人</div>
- </template>
- </el-table-column>
- <el-table-column align="center" prop="id" label=">240分钟">
- <template slot-scope="scope">
- <div>{{ scope.row.train4 }}人</div>
- </template>
- </el-table-column>
- <el-table-column align="center" prop="id" label="平均练习时长">
- <template slot-scope="scope">
- <div>{{ scope.row.avgTrainTime }}分钟</div>
- </template>
- </el-table-column>
- <el-table-column align="center" prop="id" label="练习达标占比">
- <template slot-scope="scope">
- <div>{{ scope.row.trainStandRate }}%</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="操作" fixed="right">
- <template slot-scope="scope">
- <el-button
- v-permission="'/exerciseDurationDetail'"
- @click="onDetail(scope.row)"
- type="text"
- >详情</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- </div>
- </div>
- </template>
- <script>
- import { Export } from "@/utils/downLoadFile";
- import saveform from "@/components/save-form";
- import dayjs from "dayjs";
- import histogram from "v-charts/lib/histogram.common";
- import { getNowDateAndMonday, getNowDateAndSunday } from "@/utils/utils";
- import { cloudTeacherNum } from "../api";
- let nowTime = new Date();
- nowTime =
- nowTime.getFullYear() +
- "-" +
- (nowTime.getMonth() + 1) +
- "-" +
- nowTime.getDate();
- export const getTimes = (times, keys = []) => {
- if (times && times.length) {
- return {
- [keys[0] || "start"]: dayjs(times[0]).format("YYYY-MM-DD"),
- [keys[1] || "start"]: dayjs(times[1]).format("YYYY-MM-DD")
- };
- }
- return {};
- };
- export default {
- components: { saveform, "ve-histogram": histogram },
- name: "helpCategory",
- data() {
- return {
- searchForm: {
- dates: []
- },
- tableList: [],
- activeName: "first"
- };
- },
- async mounted() {
- if (this.searchForm.dates?.length <= 0) {
- this.searchForm.dates.push(getNowDateAndMonday(nowTime));
- this.searchForm.dates.push(getNowDateAndSunday(nowTime));
- }
- this.getList();
- },
- methods: {
- exportQuestion() {
- const { dates } = this.searchForm;
- Export(
- this,
- {
- url: "/api-web/export/managerDownload",
- fileName: "云教练练习时长.xls",
- method: "post",
- params: {
- exportEnum: "EXPORT_CLOUD_TEACHER_SUM",
- queryInfo: {
- ...getTimes(dates, ["startDate", "endDate"])
- }
- }
- },
- "您确定导出云教练练习时长?"
- );
- },
- onDetail(row) {
- this.$router.push({
- path: "/exerciseDurationDetail",
- query: {
- organId: row.organId
- }
- });
- },
- search() {
- this.$refs.searchForm.validate(valid => {
- this.pageInfo = {
- ...this.pageInfo,
- page: 1
- };
- this.getList();
- });
- },
- onReSet() {
- this.pageInfo = {
- ...this.pageInfo,
- page: 1
- };
- this.$refs.searchForm.resetFields();
- this.searchForm.dates.push(getNowDateAndMonday(nowTime));
- this.searchForm.dates.push(getNowDateAndSunday(nowTime));
- this.getList();
- },
- getDefaultTime() {
- const dayjs = this.$helpers.dayjs;
- let nowDate = dayjs(new Date()).format("YYYY-MM-DD");
- let lastWeek = dayjs(nowDate)
- .subtract(1, "week")
- .format("YYYY-MM-DD");
- console.log(lastWeek, nowDate, "121212");
- this.searchForm.dates = [
- getNowDateAndMonday(lastWeek),
- getNowDateAndSunday(nowDate)
- ];
- console.log(this.searchForm.dates, "this.searchForm.dates");
- },
- changeWeek(val) {
- console.log(val, "121212");
- if (val) {
- this.searchForm.dates = [
- getNowDateAndMonday(val[0]),
- getNowDateAndSunday(val[1])
- ];
- } else {
- this.getDefaultTime();
- }
- },
- async getList() {
- // cloudTeacherNum
- try {
- const { dates } = this.searchForm;
- let params = {
- ...getTimes(dates, ["startDate", "endDate"])
- };
- const res = await cloudTeacherNum({
- page: 1,
- rows: 10,
- ...params
- });
- this.tableList = [];
- this.tableList = res.data;
- } catch {}
- }
- },
- computed: {
- items() {
- let obj = {};
- // "eVipStudentNum",
- let arr = [
- "normalNum",
- "train1",
- "train2",
- "train3",
- "train4",
- "buyRate",
- "avgTrainTime"
- ];
- arr.forEach(str => {
- if (this.dataList[str] + "") {
- obj[str] = {
- title: titles[str],
- percent: this.dataList[str],
- desc: descs[str]
- };
- }
- });
- return obj;
- },
- scaleItems() {
- let obj = {};
- // "eVipStudentNum",
- let arr = ["trainRate", "trainStandRate"];
- arr.forEach(str => {
- if (this.dataList[str] + "") {
- obj[str] = {
- title: titles[str],
- percent: this.dataList[str],
- desc: descs[str]
- };
- }
- });
- return obj;
- },
- legend() {
- return {
- left: "10px"
- };
- },
- scaleCharData() {
- const temp = {
- trainRate: "练习率",
- trainStandRate: "练习达标率"
- };
- const values = this.tableList;
- const months = {};
- for (const key in temp) {
- for (const item of values) {
- if (!months[item.organName]) {
- months[item.organName] = {
- 分部: item.organName
- };
- }
- months[item.organName][temp[key]] = item[key] || 0;
- }
- }
- console.log(months, "months");
- return {
- columns: ["分部", "练习率", "练习达标率"],
- rows: Object.values(months)
- };
- },
- chartData() {
- const temp = {
- normalNum: "会员人数",
- train1: "<=60分钟",
- train2: "60-120分钟",
- train3: "120-240分钟",
- train4: ">240分钟",
- avgTrainTime: "平均时长"
- };
- const values = this.tableList;
- const months = {};
- for (const key in temp) {
- for (const item of values) {
- if (!months[item.organName]) {
- months[item.organName] = {
- 分部: item.organName
- };
- }
- months[item.organName][temp[key]] = item[key] || 0;
- }
- }
- console.log(months, "months");
- return {
- columns: [
- "分部",
- "会员人数",
- "<=60分钟",
- "60-120分钟",
- "120-240分钟",
- ">240分钟",
- "平均时长"
- ],
- rows: Object.values(months)
- };
- },
- chartExtend() {
- return {
- yAxis: {
- //纵轴标尺固定
- minInterval: 1,
- type: "value",
- scale: true,
- min: 0,
- axisLabel: {
- formatter: "{value}"
- }
- },
- series: {
- type: "bar",
- smooth: false
- },
- tooltip: {
- axisPointer: {
- type: "shadow",
- shadowStyle: {
- color: "rgba(150,150,150,0.2)"
- }
- },
- formatter: item => {
- // let arr = [
- // { name: "会员人数", dot: "元" },
- // { name: "<=60分钟", dot: "%" },
- // { name: "60-120分钟", dot: "元" },
- // { name: "120-240分钟", dot: "元" },
- // { name: ">240分钟", dot: "元" },
- // { name: "平均时长", dot: "元" }
- // ];
- // console.log(item, "-121212--------------");
- return [
- item[0].axisValueLabel,
- ...item.map(d => {
- return `<br/>${d.marker}${d.seriesName}: ${d.value}${
- d.seriesName == "平均时长" ? "分钟" : "人"
- }`;
- })
- ].join("");
- }
- }
- };
- },
- scalChartExtend() {
- return {
- yAxis: {
- //纵轴标尺固定
- minInterval: 1,
- type: "value",
- scale: true,
- min: 0,
- axisLabel: {
- formatter: "{value}%"
- }
- },
- series: {
- type: "bar",
- smooth: false
- },
- tooltip: {
- axisPointer: {
- type: "shadow",
- shadowStyle: {
- color: "rgba(150,150,150,0.2)"
- }
- },
- formatter: item => {
- return [
- item[0].axisValueLabel,
- ...item.map(d => {
- return `<br/>${d.marker}${d.seriesName}: ${d.value}%`;
- })
- ].join("");
- }
- }
- };
- },
- dataZoom() {
- return [
- {
- show: true,
- type: "slider",
- start: 0,
- end: 30,
- filterMode: "empty",
- zoomLock: true,
- handleSize: 0
- }
- ];
- },
- dataEmpty() {
- return !this.chartData.rows.length;
- },
- exporyun() {
- return {
- organId: this.organId
- };
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- ::v-deep .el-date-editor.el-input {
- width: 100% !important;
- }
- ::v-deep .el-select {
- width: 100% !important;
- }
- ::v-deep .el-table .cell {
- display: -webkit-box;
- overflow: hidden;
- max-height: 45px;
- text-overflow: ellipsis;
- -webkit-line-clamp: 3;
- -webkit-box-orient: vertical;
- }
- ::v-deep .el-dialog__body {
- padding: 10px 20px;
- }
- .newBand {
- display: inline-block;
- }
- ::v-deep .el-tabs__active-bar {
- background-color: transparent !important;
- }
- ::v-deep.el-tabs__nav-wrap {
- &:after {
- background-color: transparent !important;
- }
- }
- /*去掉切换时el-tab-pane底部的蓝色下划线*/
- ::v-deep .el-tabs__nav-wrap::after {
- background-color: transparent !important;
- }
- /*去掉tabs底部的下划线*/
- </style>
|