Blame view

src/views/analysis/index.vue 8.79 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"
a37317f4   阿宝   使用分析,发卡记录
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
            >
              <el-option
                v-for="item in gradeList"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </el-select>
            <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   阿宝   集团管理员接口
58
            <el-button type="primary" round @click="_QueryData">筛选</el-button>
a37317f4   阿宝   使用分析,发卡记录
59
60
61
          </div>
        </div>
        <div class="table-box">
aed43d3a   阿宝   即时测修改答案
62
          <div class="radio-box" v-if="role == 'ROLE_JITUAN'">
a37317f4   阿宝   使用分析,发卡记录
63
            <el-radio-group v-model="type" @change="changeType">
e5ff81a1   阿宝   集团管理员接口
64
65
66
              <el-radio-button :label="1">学校使用对比</el-radio-button>
              <el-radio-button :label="2">学段使用对比</el-radio-button>
            </el-radio-group>
a37317f4   阿宝   使用分析,发卡记录
67
68
69
70
71
72
73
          </div>
          <el-table
            :data="tableData"
            :border="false"
            style="width: 100%"
            show-summary
          >
1b9bae95   梁保满   级联选择器调整,日志接口调整
74
            <el-table-column align="center" label="科目" prop="subjectName">
a37317f4   阿宝   使用分析,发卡记录
75
76
77
78
79
            </el-table-column>
            <el-table-column
              align="center"
              v-for="(item, index) in dataList"
              :key="index"
1b9bae95   梁保满   级联选择器调整,日志接口调整
80
              :label="item.schoolName"
a37317f4   阿宝   使用分析,发卡记录
81
82
83
            >
              <template>
                <el-table-column
1b9bae95   梁保满   级联选择器调整,日志接口调整
84
                  :prop="'periodCount' + index"
a37317f4   阿宝   使用分析,发卡记录
85
86
87
88
                  label="课时数"
                  align="center"
                ></el-table-column>
                <el-table-column
1b9bae95   梁保满   级联选择器调整,日志接口调整
89
                  :prop="'examCount' + index"
a37317f4   阿宝   使用分析,发卡记录
90
91
92
93
94
95
                  label="测练数"
                  align="center"
                ></el-table-column>
              </template>
            </el-table-column>
          </el-table>
e5ff81a1   阿宝   集团管理员接口
96
          <p class="down" v-if="role != 'ROLE_JITUAN'">
a37317f4   阿宝   使用分析,发卡记录
97
98
99
100
101
102
103
            <el-button plain round icon="fa fa-cloud-download"
              >导出报表</el-button
            >
          </p>
        </div>
      </div>
    </div>
d4283687   梁保满   首页布局完成,页面顶部返回组件
104
105
106
  </template>
  
  <script>
a37317f4   阿宝   使用分析,发卡记录
107
  import { formatDate } from "@/utils";
d4283687   梁保满   首页布局完成,页面顶部返回组件
108
  export default {
a37317f4   阿宝   使用分析,发卡记录
109
110
    data() {
      return {
e5ff81a1   阿宝   集团管理员接口
111
        role: "",
a37317f4   阿宝   使用分析,发卡记录
112
        date: "", //今天-本周-本月-本季度
e5ff81a1   阿宝   集团管理员接口
113
        type: 1, //集团管理员 表格切换
a37317f4   阿宝   使用分析,发卡记录
114
115
        query: {
          //搜索条件
1b9bae95   梁保满   级联选择器调整,日志接口调整
116
          regionId: "",
a37317f4   阿宝   使用分析,发卡记录
117
118
119
120
121
          startDay: "",
          endDay: "",
          day: "",
        },
        gradeList: [],
1b9bae95   梁保满   级联选择器调整,日志接口调整
122
123
        tableData: [],
        dataList: [],
a37317f4   阿宝   使用分析,发卡记录
124
125
126
      };
    },
    created() {
aed43d3a   阿宝   即时测修改答案
127
128
129
      this.role = this.$store.getters.info.permissions.find(
        (item) => item.roleName == this.$store.getters.info.showRoleName
      )?.role;
e5ff81a1   阿宝   集团管理员接口
130
      this._QueryGradeList();
1b9bae95   梁保满   级联选择器调整,日志接口调整
131
      this.setDate(1);
a37317f4   阿宝   使用分析,发卡记录
132
133
134
135
136
137
138
      let startDay = this.query?.startDay;
      if (!startDay) {
        this.query.startDay = new Date();
        this.query.endDay = new Date();
      }
    },
    methods: {
e5ff81a1   阿宝   集团管理员接口
139
      changeType(val) {
1b9bae95   梁保满   级联选择器调整,日志接口调整
140
141
        if (val == 1) {
          this.query.regionId = "";
e5ff81a1   阿宝   集团管理员接口
142
        }
1b9bae95   梁保满   级联选择器调整,日志接口调整
143
        this._QueryData(val);
a37317f4   阿宝   使用分析,发卡记录
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
      },
      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;
            }
            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:
            if (aMonth > 1 && aMonth < 4) {
              aMonth = "01";
            } else if (aMonth > 3 && aMonth < 7) {
              aMonth = "04";
            } else if (aMonth > 6 && aMonth < 10) {
              aMonth = "07";
            } else {
              aMonth = "10";
            }
d4283687   梁保满   首页布局完成,页面顶部返回组件
184
  
a37317f4   阿宝   使用分析,发卡记录
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
            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] != "") {
            query[key] = this.query[key];
          }
        }
e5ff81a1   阿宝   集团管理员接口
222
        if (this.role == "ROLE_JITUAN") {
1b9bae95   梁保满   级联选择器调整,日志接口调整
223
          if (this.query.regionId == "") {
e5ff81a1   阿宝   集团管理员接口
224
225
226
227
228
229
230
231
232
233
234
235
            this.type = 1;
          } else {
            this.type = 2;
          }
        }
        const Contrast =
          this.role != "ROLE_JITUAN"
            ? this.$request.gradeContrast
            : this.type == 1
            ? this.$request.schoolContrast
            : this.$request.gradeContrast;
        const { data, status, info } = await Contrast({
a37317f4   阿宝   使用分析,发卡记录
236
237
238
239
          ...query,
        });
        this.loading = false;
        if (status === 0) {
1b9bae95   梁保满   级联选择器调整,日志接口调整
240
241
242
243
244
245
246
247
248
249
250
251
          this.tableData = data.map((item)=>{
            let params={}
            item.dataList.map((items,index)=>{
              params['examCount'+index] = items.examCount
              params['periodCount'+index] = items.periodCount
            })
            return {
              subjectName:item.subjectName,
              ...params,
            }
          });
          this.dataList = data[0]?.dataList
a37317f4   阿宝   使用分析,发卡记录
252
253
254
255
        } else {
          this.$message.error(info);
        }
      },
e5ff81a1   阿宝   集团管理员接口
256
257
258
259
260
261
262
263
      // 查找班级
      async _QueryGradeList() {
        this.loading = true;
        const gradeList =
          this.role != "ROLE_JITUAN"
            ? this.$request.gradeList
            : this.$request.regionList;
        const { data, status, info } = await gradeList();
a37317f4   阿宝   使用分析,发卡记录
264
        if (status === 0) {
e5ff81a1   阿宝   集团管理员接口
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
          if (!!data.list) {
            if (this.role != "ROLE_JITUAN") {
              this.gradeList =
                data.list?.map((item) => {
                  let gradeList = {
                    value: item.grade,
                    label: item.gradeName,
                  };
                  return gradeList;
                }) || [];
            } else {
              this.gradeList =
                data.list?.map((item) => {
                  let gradeList = {
                    value: item.id,
                    label: item.regionName,
                  };
                  return gradeList;
                }) || [];
              this.gradeList.unshift({
                value: "",
                label: "全部",
              });
            }
          }
a37317f4   阿宝   使用分析,发卡记录
290
291
292
293
294
295
        } else {
          this.$message.error(info);
        }
      },
    },
  };
d4283687   梁保满   首页布局完成,页面顶部返回组件
296
297
  </script>
  
a37317f4   阿宝   使用分析,发卡记录
298
299
300
301
  <style lang="scss" scoped>
  .table-box {
    padding: 0 20px;
  }
e5ff81a1   阿宝   集团管理员接口
302
303
  .radio-box {
    padding-bottom: 12px;
a37317f4   阿宝   使用分析,发卡记录
304
305
306
307
  }
  .down {
    padding-top: 20px;
  }
d4283687   梁保满   首页布局完成,页面顶部返回组件
308
  </style>