Blame view

src/views/standard/analysis/index.vue 14.4 KB
d4283687   梁保满   首页布局完成,页面顶部返回组件
1
  <template>
a37317f4   阿宝   使用分析,发卡记录
2
3
4
5
6
7
8
9
10
11
12
    <div>
      <back-box>
        <template slot="title">
          <span>使用分析</span>
        </template>
      </back-box>
      <div class="page-content">
        <div class="answer-header">
          <div class="sel-box">
            <el-select
              class="sel"
1b9bae95   梁保满   级联选择器调整,日志接口调整
13
14
              v-model="query.regionId"
              placeholder="选择区域"
e5ff81a1   阿宝   集团管理员接口
15
              @change="_QueryData"
225a00b6   梁保满   飞书问题解决
16
              v-if="role == 'ROLE_JITUAN'"
a37317f4   阿宝   使用分析,发卡记录
17
18
19
20
21
22
23
24
25
            >
              <el-option
                v-for="item in gradeList"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </el-select>
225a00b6   梁保满   飞书问题解决
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
            <el-select
              v-else
              class="sel"
              v-model="query.gradeName"
              placeholder="选择年级"
              @change="_QueryData"
            >
              <el-option
                v-for="item in gradeList"
                :key="item.label"
                :label="item.label"
                :value="item.label"
              >
              </el-option>
            </el-select>
a37317f4   阿宝   使用分析,发卡记录
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
            <div class="d1">
              <el-date-picker
                v-model="query.startDay"
                type="date"
                @change="handleChangeTimeStart"
                placeholder="选择日期时间"
                value-format="yyyy-MM-dd"
              >
              </el-date-picker>
              ~
              <el-date-picker
                v-model="query.endDay"
                type="date"
                placeholder="选择日期时间"
                @change="handleChangeTimeEnd"
                value-format="yyyy-MM-dd"
              >
              </el-date-picker>
            </div>
            <p class="p1">
              <span @click="setDate(1)" :class="[date == 1 ? 'active' : '', 's1']"
                >今天</span
              >
              <span @click="setDate(2)" :class="[date == 2 ? 'active' : '', 's1']"
                >本周</span
              >
              <span @click="setDate(3)" :class="[date == 3 ? 'active' : '', 's1']"
                >本月</span
              >
              <span @click="setDate(4)" :class="[date == 4 ? 'active' : '', 's1']"
                >本季度</span
              >
            </p>
e5ff81a1   阿宝   集团管理员接口
74
            <el-button type="primary" round @click="_QueryData">筛选</el-button>
a37317f4   阿宝   使用分析,发卡记录
75
76
          </div>
        </div>
533a17d8   梁保满   备题组卷添加批量设置答案
77
78
79
80
81
82
83
84
85
86
87
88
        <div class="radio-box" v-if="role == 'ROLE_JITUAN'">
          <el-radio-group v-model="type" @change="changeType">
            <el-radio-button :label="1">学校使用对比</el-radio-button>
            <el-radio-button :label="2">学段使用对比</el-radio-button>
          </el-radio-group>
        </div>
        <div class="table-box" v-loading="loading">
          <el-empty
            :image-size="100"
            v-if="!tableData.length && !loading"
            description="没有更多数据"
          ></el-empty>
a37317f4   阿宝   使用分析,发卡记录
89
          <el-table
533a17d8   梁保满   备题组卷添加批量设置答案
90
            v-else
a37317f4   阿宝   使用分析,发卡记录
91
92
93
94
95
            :data="tableData"
            :border="false"
            style="width: 100%"
            show-summary
          >
1365ef5e   梁保满   优化
96
            <el-table-column align="center" fixed label="科目" prop="subjectName">
a37317f4   阿宝   使用分析,发卡记录
97
98
99
100
101
            </el-table-column>
            <el-table-column
              align="center"
              v-for="(item, index) in dataList"
              :key="index"
225a00b6   梁保满   飞书问题解决
102
103
104
              :label="
                role == 'ROLE_JITUAN'
                  ? item.schoolName || item.gradeName
255e2506   梁保满   飞书bug及优化
105
                  : item.gradeName || item.className
225a00b6   梁保满   飞书问题解决
106
              "
a37317f4   阿宝   使用分析,发卡记录
107
            >
1365ef5e   梁保满   优化
108
              <template v-if="role == 'ROLE_JITUAN'">
a37317f4   阿宝   使用分析,发卡记录
109
                <el-table-column
277915e3   梁保满   使用分析数据问题
110
                  :prop="'periodCount' + (type == 1 ? item.schoolId : item.grade)"
a37317f4   阿宝   使用分析,发卡记录
111
112
                  label="课时数"
                  align="center"
1365ef5e   梁保满   优化
113
                >
277915e3   梁保满   使用分析数据问题
114
115
                <template slot-scope="scoped">{{scoped.row['periodCount' + (type == 1 ? item.schoolId : item.grade)]||"--"}}</template>
                </el-table-column>
a37317f4   阿宝   使用分析,发卡记录
116
                <el-table-column
277915e3   梁保满   使用分析数据问题
117
                  :prop="'examCount' + (type == 1 ? item.schoolId : item.grade)"
a37317f4   阿宝   使用分析,发卡记录
118
119
                  label="测练数"
                  align="center"
277915e3   梁保满   使用分析数据问题
120
                ><template slot-scope="scoped">{{scoped.row['examCount' + (type == 1 ? item.schoolId : item.grade)]||"--"}}</template></el-table-column>
1365ef5e   梁保满   优化
121
122
123
              </template>
              <template v-else>
                <el-table-column
277915e3   梁保满   使用分析数据问题
124
                  :prop="'periodCount' + (item.grade || item.classId)"
1365ef5e   梁保满   优化
125
126
                  label="课时数"
                  align="center"
277915e3   梁保满   使用分析数据问题
127
                ><template slot-scope="scoped">{{scoped.row['periodCount' + (item.grade || item.classId)]||"--"}}</template></el-table-column>
1365ef5e   梁保满   优化
128
                <el-table-column
277915e3   梁保满   使用分析数据问题
129
                  :prop="'examCount' + (item.grade || item.classId)"
1365ef5e   梁保满   优化
130
131
                  label="测练数"
                  align="center"
277915e3   梁保满   使用分析数据问题
132
                ><template slot-scope="scoped">{{scoped.row['examCount' + (item.grade || item.classId)]||"--"}}</template></el-table-column>
a37317f4   阿宝   使用分析,发卡记录
133
134
135
              </template>
            </el-table-column>
          </el-table>
0e46bc25   梁保满   优化
136
          <p class="down" v-if="tableData.length">
1365ef5e   梁保满   优化
137
138
139
140
141
142
            <el-button
              @click="downExc"
              type="primary"
              plain
              round
              icon="fa fa-cloud-download"
a37317f4   阿宝   使用分析,发卡记录
143
144
145
146
147
148
              >导出报表</el-button
            >
          </p>
        </div>
      </div>
    </div>
d4283687   梁保满   首页布局完成,页面顶部返回组件
149
150
151
  </template>
  
  <script>
533a17d8   梁保满   备题组卷添加批量设置答案
152
  import { formatDate, downloadFile } from "@/utils";
d4283687   梁保满   首页布局完成,页面顶部返回组件
153
  export default {
a37317f4   阿宝   使用分析,发卡记录
154
155
    data() {
      return {
533a17d8   梁保满   备题组卷添加批量设置答案
156
        loading: false,
255e2506   梁保满   飞书bug及优化
157
        exportLoading: false,
e5ff81a1   阿宝   集团管理员接口
158
        role: "",
a37317f4   阿宝   使用分析,发卡记录
159
        date: "", //今天-本周-本月-本季度
e5ff81a1   阿宝   集团管理员接口
160
        type: 1, //集团管理员 表格切换
a37317f4   阿宝   使用分析,发卡记录
161
162
        query: {
          //搜索条件
1b9bae95   梁保满   级联选择器调整,日志接口调整
163
          regionId: "",
6d7bd862   梁保满   飞书bug
164
          gradeName: "全部",
a37317f4   阿宝   使用分析,发卡记录
165
166
167
168
169
          startDay: "",
          endDay: "",
          day: "",
        },
        gradeList: [],
1b9bae95   梁保满   级联选择器调整,日志接口调整
170
171
        tableData: [],
        dataList: [],
a37317f4   阿宝   使用分析,发卡记录
172
173
174
      };
    },
    created() {
03bce046   梁保满   个人版调整
175
      this.role = this.$store.getters.info.showRole || this.$store.getters.info.permissions[0].role;
e5ff81a1   阿宝   集团管理员接口
176
      this._QueryGradeList();
1b9bae95   梁保满   级联选择器调整,日志接口调整
177
      this.setDate(1);
a37317f4   阿宝   使用分析,发卡记录
178
179
180
181
182
183
184
      let startDay = this.query?.startDay;
      if (!startDay) {
        this.query.startDay = new Date();
        this.query.endDay = new Date();
      }
    },
    methods: {
255e2506   梁保满   飞书bug及优化
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
      async downExc() {
        if (this.exportLoading == true) return;
        let query = {};
        for (let key in this.query) {
          if (this.query[key] != "") {
            if (key == "gradeName") {
              query[key] = this.query[key] == "全部" ? "" : this.query[key];
            } else {
              query[key] = this.query[key];
            }
          }
        }
        if (this.role == "ROLE_JITUAN") {
          delete query.gradeName;
        } else {
          delete query.regionId;
        }
        this.exportLoading = true;
0e46bc25   梁保满   优化
203
204
  
        const exportUsageAnalysis = this.role != "ROLE_JITUAN"?this.$request.exportUsageAnalysis:
189da653   梁保满   跳转旧平台入口权限设置,集团管理员...
205
        this.$request.exportSchoolContrast
0e46bc25   梁保满   优化
206
        const data = await exportUsageAnalysis({ ...query });
255e2506   梁保满   飞书bug及优化
207
208
209
210
211
212
213
214
215
216
        this.exportLoading = false;
        if (data) {
          let blob = new Blob([data], {
            type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
          });
          downloadFile("使用分析.xlsx", blob);
        } else {
          this.$message.error("下载失败");
        }
      },
e5ff81a1   阿宝   集团管理员接口
217
      changeType(val) {
1b9bae95   梁保满   级联选择器调整,日志接口调整
218
219
        if (val == 1) {
          this.query.regionId = "";
e5ff81a1   阿宝   集团管理员接口
220
        }
1b9bae95   梁保满   级联选择器调整,日志接口调整
221
        this._QueryData(val);
a37317f4   阿宝   使用分析,发卡记录
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
      },
      setDate(index) {
        const that = this;
        this.date = index == this.date ? "" : index;
        let aYear = new Date().getFullYear();
        let aMonth = new Date().getMonth() + 1;
        that.query.day = "";
        that.query.startDay = "";
        that.query.endDay = "";
        switch (index) {
          case 1:
            that.query.day = formatDate(new Date(), "yyyy-MM-dd");
            that.query.startDay = that.query.day;
            that.query.endDay = that.query.day;
            break;
          case 2:
            let day = new Date().getDay();
            if (day == 0) {
              //中国式星期天是一周的最后一天
              day = 7;
            }
255e2506   梁保满   飞书bug及优化
243
            day--;
a37317f4   阿宝   使用分析,发卡记录
244
245
246
247
248
249
250
251
252
253
            let aTime = new Date().getTime() - 24 * 60 * 60 * 1000 * day;
            that.query.startDay = formatDate(new Date(aTime), "yyyy-MM-dd");
            that.query.endDay = formatDate(new Date(), "yyyy-MM-dd");
            break;
          case 3:
            aMonth = aMonth < 10 ? "0" + aMonth : aMonth;
            that.query.startDay = `${aYear}-${aMonth}-01`;
            that.query.endDay = formatDate(new Date(), "yyyy-MM-dd");
            break;
          case 4:
6d7bd862   梁保满   飞书bug
254
            if (aMonth > 0 && aMonth < 4) {
e3b0e3e7   梁保满   季度时间格式调整
255
              aMonth = "1";
a37317f4   阿宝   使用分析,发卡记录
256
            } else if (aMonth > 3 && aMonth < 7) {
e3b0e3e7   梁保满   季度时间格式调整
257
              aMonth = "4";
a37317f4   阿宝   使用分析,发卡记录
258
            } else if (aMonth > 6 && aMonth < 10) {
e3b0e3e7   梁保满   季度时间格式调整
259
              aMonth = "7";
a37317f4   阿宝   使用分析,发卡记录
260
261
262
            } else {
              aMonth = "10";
            }
d4283687   梁保满   首页布局完成,页面顶部返回组件
263
  
a37317f4   阿宝   使用分析,发卡记录
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
            aMonth = aMonth < 10 ? "0" + aMonth : aMonth;
            that.query.startDay = `${aYear}-${aMonth}-01`;
            that.query.endDay = formatDate(new Date(), "yyyy-MM-dd");
            break;
        }
        this.page = 1;
        this._QueryData();
      },
      handleChangeTimeStart(val) {
        this.query.day = "";
        this.date = "";
        if (this.query.endDay) {
          if (new Date(val).getTime() > new Date(this.query.endDay).getTime()) {
            this.$message.error("任务结束时间不能任务开始时间前面,请重新设置");
            this.query.startDay = "";
          }
        }
      },
      handleChangeTimeEnd(val) {
        this.query.day = "";
        this.date = "";
        if (this.query.startDay) {
          if (new Date(val).getTime() < new Date(this.query.startDay).getTime()) {
            this.$message.error("任务结束时间不能任务开始时间前面,请重新设置");
            this.query.endDay = "";
          }
        }
      },
      async _QueryData() {
        this.loading = true;
        //多课时对比
        let query = {};
        for (let key in this.query) {
          if (this.query[key] != "") {
dbbfc6c5   梁保满   飞书优化及bug
298
            if (key == "gradeName") {
255e2506   梁保满   飞书bug及优化
299
              query[key] = this.query[key] == "全部" ? "" : this.query[key];
6d7bd862   梁保满   飞书bug
300
301
302
            } else {
              query[key] = this.query[key];
            }
a37317f4   阿宝   使用分析,发卡记录
303
304
          }
        }
225a00b6   梁保满   飞书问题解决
305
306
307
308
309
        if (this.role == "ROLE_JITUAN") {
          delete query.gradeName;
        } else {
          delete query.regionId;
        }
6d7bd862   梁保满   飞书bug
310
        this.tableData = [];
e5ff81a1   阿宝   集团管理员接口
311
312
        const Contrast =
          this.role != "ROLE_JITUAN"
225a00b6   梁保满   飞书问题解决
313
            ? this.$request.usageAnalysis
e5ff81a1   阿宝   集团管理员接口
314
315
316
317
            : this.type == 1
            ? this.$request.schoolContrast
            : this.$request.gradeContrast;
        const { data, status, info } = await Contrast({
a37317f4   阿宝   使用分析,发卡记录
318
319
320
321
          ...query,
        });
        this.loading = false;
        if (status === 0) {
225a00b6   梁保满   飞书问题解决
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
          let dataIdsList = [],
            dataList = [];
  
          data.map((item) => {
            item.dataList.map((items) => {
              if (this.role == "ROLE_JITUAN") {
                if (this.type == 1) {
                  if (!dataIdsList.includes(items.schoolId)) {
                    dataIdsList.push(items.schoolId);
                    dataList.push(items);
                  }
                } else if (this.type == 2) {
                  if (!dataIdsList.includes(items.grade)) {
                    dataIdsList.push(items.grade);
                    dataList.push(items);
                  }
                }
              } else {
255e2506   梁保满   飞书bug及优化
340
                if (this.query.gradeName == "全部") {
225a00b6   梁保满   飞书问题解决
341
342
343
344
                  if (!dataIdsList.includes(items.grade)) {
                    dataIdsList.push(items.grade);
                    dataList.push(items);
                  }
533a17d8   梁保满   备题组卷添加批量设置答案
345
                } else {
225a00b6   梁保满   飞书问题解决
346
347
348
349
350
351
352
353
354
355
356
357
                  if (!dataIdsList.includes(items.classId)) {
                    dataIdsList.push(items.classId);
                    dataList.push(items);
                  }
                }
              }
            });
          });
          console.log(dataList);
          this.tableData = data.map((item) => {
            let params = {};
            dataIdsList.map((ids, index) => {
225a00b6   梁保满   飞书问题解决
358
359
360
361
              item.dataList.map((items) => {
                if (this.role == "ROLE_JITUAN") {
                  if (this.type == 1) {
                    if (items.schoolId == ids) {
1365ef5e   梁保满   优化
362
363
                      params["examCount" + items.schoolId] = items.examCount;
                      params["periodCount" + items.schoolId] = items.periodCount;
225a00b6   梁保满   飞书问题解决
364
365
366
                    }
                  } else if (this.type == 2) {
                    if (items.grade == ids) {
1365ef5e   梁保满   优化
367
368
                      params["examCount" + items.grade] = items.examCount;
                      params["periodCount" + items.grade] = items.periodCount;
225a00b6   梁保满   飞书问题解决
369
370
371
                    }
                  }
                } else {
255e2506   梁保满   飞书bug及优化
372
                  if (this.query.gradeName == "全部") {
225a00b6   梁保满   飞书问题解决
373
                    if (items.grade == ids) {
1365ef5e   梁保满   优化
374
375
                      params["examCount" + items.grade] = items.examCount;
                      params["periodCount" + items.grade] = items.periodCount;
225a00b6   梁保满   飞书问题解决
376
377
378
                    }
                  } else if (this.query.gradeName) {
                    if (items.classId == ids) {
1365ef5e   梁保满   优化
379
380
                      params["examCount" + items.classId] = items.examCount;
                      params["periodCount" + items.classId] = items.periodCount;
225a00b6   梁保满   飞书问题解决
381
382
383
384
385
                    }
                  }
                }
              });
            });
1b9bae95   梁保满   级联选择器调整,日志接口调整
386
            return {
225a00b6   梁保满   飞书问题解决
387
              subjectName: item.subjectName,
1b9bae95   梁保满   级联选择器调整,日志接口调整
388
              ...params,
225a00b6   梁保满   飞书问题解决
389
            };
1b9bae95   梁保满   级联选择器调整,日志接口调整
390
          });
255e2506   梁保满   飞书bug及优化
391
392
          this.dataList = dataList.sort((a, b) => {
            return a.grade - b.grade;
dbbfc6c5   梁保满   飞书优化及bug
393
          });
a37317f4   阿宝   使用分析,发卡记录
394
395
396
397
        } else {
          this.$message.error(info);
        }
      },
e5ff81a1   阿宝   集团管理员接口
398
399
400
401
402
403
404
405
      // 查找班级
      async _QueryGradeList() {
        this.loading = true;
        const gradeList =
          this.role != "ROLE_JITUAN"
            ? this.$request.gradeList
            : this.$request.regionList;
        const { data, status, info } = await gradeList();
a37317f4   阿宝   使用分析,发卡记录
406
        if (status === 0) {
e5ff81a1   阿宝   集团管理员接口
407
408
409
410
411
412
413
414
415
416
          if (!!data.list) {
            if (this.role != "ROLE_JITUAN") {
              this.gradeList =
                data.list?.map((item) => {
                  let gradeList = {
                    value: item.grade,
                    label: item.gradeName,
                  };
                  return gradeList;
                }) || [];
6d7bd862   梁保满   飞书bug
417
418
419
420
              this.gradeList.unshift({
                value: "",
                label: "全部",
              });
e5ff81a1   阿宝   集团管理员接口
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
            } else {
              this.gradeList =
                data.list?.map((item) => {
                  let gradeList = {
                    value: item.id,
                    label: item.regionName,
                  };
                  return gradeList;
                }) || [];
              this.gradeList.unshift({
                value: "",
                label: "全部",
              });
            }
          }
a37317f4   阿宝   使用分析,发卡记录
436
437
438
439
440
441
        } else {
          this.$message.error(info);
        }
      },
    },
  };
d4283687   梁保满   首页布局完成,页面顶部返回组件
442
  </script>
203ff41a   梁保满   使用分析添加左右滚动
443
444
445
446
447
448
449
450
451
452
  <style>
  div::-webkit-scrollbar {
    width: 3px;
    height: 10px;
  }
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #ccc;
  }
  </style>
a37317f4   阿宝   使用分析,发卡记录
453
454
455
456
  <style lang="scss" scoped>
  .table-box {
    padding: 0 20px;
  }
e5ff81a1   阿宝   集团管理员接口
457
  .radio-box {
533a17d8   梁保满   备题组卷添加批量设置答案
458
    padding: 0 20px 12px;
a37317f4   阿宝   使用分析,发卡记录
459
460
461
462
  }
  .down {
    padding-top: 20px;
  }
d4283687   梁保满   首页布局完成,页面顶部返回组件
463
  </style>