4c4f7640
梁保满
路由表,路由前端文件
|
1
|
<template>
|
e3b0e3e7
梁保满
季度时间格式调整
|
2
|
<div ref="main" class="page-content">
|
bb778c90
阿宝
设备状态
|
3
4
5
6
|
<back-box>
<template slot="title">
<span>设备管理</span>
</template>
|
47a01cb6
梁保满
v1.3测试问题
|
7
|
<template slot="btns">
|
78ea6110
梁保满
设备导出提示
|
8
9
10
11
12
13
14
15
16
17
18
19
|
<template v-if="tableData.length">
<el-tooltip effect="dark" content="设备导出" placement="bottom">
<el-button
type="primary"
icon="fa fa-cloud-download"
size="mini"
plain
circle
@click="downExl"
></el-button>
</el-tooltip>
</template>
|
47a01cb6
梁保满
v1.3测试问题
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<template v-if="role == 'ROLE_XUEXIAO' && type == 1">
<el-tooltip effect="dark" content="设备导入" placement="bottom">
<el-button
type="primary"
icon="el-icon-upload2"
size="mini"
plain
circle
@click="diaUp = true"
></el-button>
</el-tooltip>
<el-tooltip effect="dark" content="添加基站" placement="bottom">
<el-button
type="primary"
icon="el-icon-receiving"
size="mini"
plain
circle
@click="addDev"
></el-button> </el-tooltip
></template>
|
bb778c90
阿宝
设备状态
|
41
42
|
</template>
</back-box>
|
1365ef5e
梁保满
优化
|
43
|
<div>
|
db11048f
阿宝
设备状态,学校管理
|
44
45
46
47
48
49
50
51
|
<div class="tab-box">
<el-radio-group v-model="type">
<el-radio-button :label="1">基站管理</el-radio-button>
<el-radio-button :label="2">答题器管理</el-radio-button>
<el-radio-button :label="3">授课端管理</el-radio-button>
</el-radio-group>
</div>
<div class="content">
|
8ea67428
梁保满
飞书bug
|
52
|
<div v-show="type == 1">
|
225a00b6
梁保满
飞书问题解决
|
53
|
<div class="chart-box" v-if="count">
|
db11048f
阿宝
设备状态,学校管理
|
54
|
<div class="device-num">
|
225a00b6
梁保满
飞书问题解决
|
55
|
<p class="p1">{{ count }}</p>
|
db11048f
阿宝
设备状态,学校管理
|
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<p class="p2">基站数量</p>
</div>
<div class="chart">
<pie-chart
id="pieChart"
:params="chartData"
@clickPieChart="clickPieChart"
></pie-chart>
</div>
</div>
<div class="table-box">
<div class="answer-header">
<div class="sel-box">
<el-cascader
|
225a00b6
梁保满
飞书问题解决
|
70
|
size="small"
|
5be3bb70
梁保满
切换账号,缓存组件接口报错问题
|
71
|
class="sel sel2"
|
db11048f
阿宝
设备状态,学校管理
|
72
73
74
|
clearable
placeholder="选择班级"
v-model="query.classId"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
75
|
:options="gradeList"
|
db11048f
阿宝
设备状态,学校管理
|
76
|
:props="props"
|
5be3bb70
梁保满
切换账号,缓存组件接口报错问题
|
77
|
collapse-tags
|
db11048f
阿宝
设备状态,学校管理
|
78
|
:show-all-levels="false"
|
db11048f
阿宝
设备状态,学校管理
|
79
80
81
|
></el-cascader>
<el-select
class="sel"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
82
|
v-model="query.onlineStatus"
|
db11048f
阿宝
设备状态,学校管理
|
83
|
placeholder="选择状态"
|
b21d90ef
梁保满
长水登录
|
84
|
@change="_QueryData(true)"
|
db11048f
阿宝
设备状态,学校管理
|
85
86
87
88
89
90
91
92
93
94
|
>
<el-option
v-for="item in statusList"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
<el-input
|
db11048f
阿宝
设备状态,学校管理
|
95
|
placeholder="请输入设备编码"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
96
|
v-model="query.sn"
|
db11048f
阿宝
设备状态,学校管理
|
97
|
class="input-with-select"
|
4c2fb560
梁保满
反馈新需求
|
98
|
clearable
|
db11048f
阿宝
设备状态,学校管理
|
99
100
101
102
103
104
105
106
|
@keyup.enter.native="_QueryData(true)"
>
<el-button
slot="append"
icon="el-icon-search"
@click="_QueryData(true)"
></el-button>
</el-input>
|
1b9bae95
梁保满
级联选择器调整,日志接口调整
|
107
|
<el-button class="serach-box" round @click="_QueryData(true)"
|
b21d90ef
梁保满
长水登录
|
108
109
|
>筛选</el-button
>
|
db11048f
阿宝
设备状态,学校管理
|
110
111
|
</div>
</div>
|
47a01cb6
梁保满
v1.3测试问题
|
112
113
114
115
|
<p class="loading" v-if="!tableData.length && loading">
加载中<i class="el-icon-loading"></i>
</p>
<el-table v-else :data="tableData" border style="width: 100%">
|
db11048f
阿宝
设备状态,学校管理
|
116
|
<el-table-column
|
6d7bd862
梁保满
飞书bug
|
117
|
prop="sn"
|
db11048f
阿宝
设备状态,学校管理
|
118
119
120
121
|
label="设备编码"
align="center"
></el-table-column>
<el-table-column
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
122
|
prop="frequency"
|
db11048f
阿宝
设备状态,学校管理
|
123
124
|
label="频点"
align="center"
|
4c2fb560
梁保满
反馈新需求
|
125
|
width="60"
|
db11048f
阿宝
设备状态,学校管理
|
126
127
|
></el-table-column>
<el-table-column
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
128
|
prop="pairingCode"
|
db11048f
阿宝
设备状态,学校管理
|
129
130
131
132
|
label="配对码"
align="center"
></el-table-column>
<el-table-column
|
e5e4a3e6
梁保满
v1.3
|
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
v-if="role == 'ROLE_JITUAN'"
prop="schoolName"
label="学校"
align="center"
></el-table-column>
<el-table-column
v-if="role == 'ROLE_JITUAN'"
prop="gradeName"
label="年级"
align="center"
><template slot-scope="scoped">
<p v-for="(item, index) in scoped.row.classList" :key="index">
{{ item.gradeName }}
</p>
</template></el-table-column
>
<el-table-column
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
150
|
prop="roomName"
|
db11048f
阿宝
设备状态,学校管理
|
151
152
153
|
label="所在教室"
align="center"
></el-table-column>
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
154
155
|
<el-table-column label="关联班级" align="center">
<template slot-scope="scoped">
|
e3b0e3e7
梁保满
季度时间格式调整
|
156
|
<p v-for="(item, index) in scoped.row.classList" :key="index">
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
157
158
159
160
|
{{ item.className }}
</p>
</template>
</el-table-column>
|
db11048f
阿宝
设备状态,学校管理
|
161
|
<el-table-column
|
6d7bd862
梁保满
飞书bug
|
162
|
prop="otaVersionName"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
163
|
label="固件版本号"
|
db11048f
阿宝
设备状态,学校管理
|
164
165
166
|
align="center"
></el-table-column>
<el-table-column
|
6d7bd862
梁保满
飞书bug
|
167
|
prop="onlineTime"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
168
|
label="最近上报"
|
db11048f
阿宝
设备状态,学校管理
|
169
|
align="center"
|
4c2fb560
梁保满
反馈新需求
|
170
171
172
173
174
175
176
|
width="160"
></el-table-column>
<el-table-column
prop="createdTime"
label="创建时间"
align="center"
width="160"
|
db11048f
阿宝
设备状态,学校管理
|
177
|
></el-table-column>
|
4c2fb560
梁保满
反馈新需求
|
178
|
<el-table-column label="状态" align="center" width="60"
|
db11048f
阿宝
设备状态,学校管理
|
179
180
|
><template slot-scope="scope">
{{
|
6d7bd862
梁保满
飞书bug
|
181
|
scope.row.onlineStatus == 1
|
db11048f
阿宝
设备状态,学校管理
|
182
|
? "在线"
|
6d7bd862
梁保满
飞书bug
|
183
184
185
|
: scope.row.onlineStatus == 2
? "异常"
: "离线"
|
db11048f
阿宝
设备状态,学校管理
|
186
187
188
189
190
|
}}
</template></el-table-column
>
<el-table-column label="操作" align="center"
><template slot-scope="scoped">
|
225a00b6
梁保满
飞书问题解决
|
191
192
193
194
195
196
|
<el-tooltip
effect="dark"
v-if="role != 'ROLE_JITUAN'"
content="修改基站"
placement="top"
>
|
db11048f
阿宝
设备状态,学校管理
|
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
|
<el-button
type="primary"
circle
size="mini"
icon="fa fa-edit"
@click="edit(scoped.row)"
></el-button>
</el-tooltip>
<el-tooltip effect="dark" content="日志" placement="top">
<el-button
type="warning"
circle
size="mini"
icon="fa fa-eye"
@click="linkTo(scoped.row, 1)"
></el-button>
</el-tooltip> </template
></el-table-column>
</el-table>
</div>
</div>
|
8ea67428
梁保满
飞书bug
|
218
|
<div v-show="type == 2">
|
225a00b6
梁保满
飞书问题解决
|
219
|
<div class="chart-box" v-if="count">
|
db11048f
阿宝
设备状态,学校管理
|
220
|
<div class="device-num">
|
225a00b6
梁保满
飞书问题解决
|
221
|
<p class="p1">{{ count }}</p>
|
db11048f
阿宝
设备状态,学校管理
|
222
223
224
225
226
227
228
229
230
231
232
233
234
235
|
<p class="p2">答题器数量</p>
</div>
<div class="chart">
<scatter-chart
id="scatterChart"
:params="chartData2"
@clickScatterChart="clickScatterChart"
></scatter-chart>
</div>
</div>
<div class="table-box">
<div class="answer-header">
<div class="sel-box">
<el-cascader
|
225a00b6
梁保满
飞书问题解决
|
236
|
size="small"
|
5be3bb70
梁保满
切换账号,缓存组件接口报错问题
|
237
|
class="sel sel2"
|
db11048f
阿宝
设备状态,学校管理
|
238
239
240
|
clearable
placeholder="选择班级"
v-model="query.classId"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
241
|
:options="gradeList"
|
db11048f
阿宝
设备状态,学校管理
|
242
|
:props="props"
|
5be3bb70
梁保满
切换账号,缓存组件接口报错问题
|
243
|
collapse-tags
|
db11048f
阿宝
设备状态,学校管理
|
244
|
:show-all-levels="false"
|
db11048f
阿宝
设备状态,学校管理
|
245
246
247
|
></el-cascader>
<el-select
class="sel"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
248
|
v-model="query.type"
|
db11048f
阿宝
设备状态,学校管理
|
249
|
placeholder="选择状态"
|
b21d90ef
梁保满
长水登录
|
250
|
@change="_QueryData(true)"
|
db11048f
阿宝
设备状态,学校管理
|
251
252
|
>
<el-option
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
253
|
v-for="item in typeList"
|
db11048f
阿宝
设备状态,学校管理
|
254
255
256
257
258
259
260
|
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
<el-input
|
db11048f
阿宝
设备状态,学校管理
|
261
|
placeholder="请输入设备编码"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
262
|
v-model="query.sn"
|
db11048f
阿宝
设备状态,学校管理
|
263
|
class="input-with-select"
|
4c2fb560
梁保满
反馈新需求
|
264
|
clearable
|
78ea6110
梁保满
设备导出提示
|
265
|
@input.native="query.studentName = ''"
|
4c2fb560
梁保满
反馈新需求
|
266
267
268
269
270
271
272
273
274
275
276
277
278
|
@keyup.enter.native="_QueryData(true)"
>
<el-button
slot="append"
icon="el-icon-search"
@click="_QueryData(true)"
></el-button>
</el-input>
<el-input
placeholder="学生姓名"
v-model="query.studentName"
class="input-with-select"
clearable
|
78ea6110
梁保满
设备导出提示
|
279
|
@input.native="query.sn = ''"
|
db11048f
阿宝
设备状态,学校管理
|
280
281
282
283
284
285
286
287
|
@keyup.enter.native="_QueryData(true)"
>
<el-button
slot="append"
icon="el-icon-search"
@click="_QueryData(true)"
></el-button>
</el-input>
|
1b9bae95
梁保满
级联选择器调整,日志接口调整
|
288
|
<el-button class="serach-box" round @click="_QueryData(true)"
|
b21d90ef
梁保满
长水登录
|
289
|
>筛选</el-button
|
1b9bae95
梁保满
级联选择器调整,日志接口调整
|
290
|
>
|
db11048f
阿宝
设备状态,学校管理
|
291
292
|
</div>
</div>
|
47a01cb6
梁保满
v1.3测试问题
|
293
294
295
296
|
<p class="loading" v-if="!tableData.length && loading">
加载中<i class="el-icon-loading"></i>
</p>
<el-table v-else :data="tableData" border style="width: 100%">
|
db11048f
阿宝
设备状态,学校管理
|
297
|
<el-table-column
|
6d7bd862
梁保满
飞书bug
|
298
|
prop="sn"
|
db11048f
阿宝
设备状态,学校管理
|
299
300
|
label="设备编码"
align="center"
|
db11048f
阿宝
设备状态,学校管理
|
301
|
></el-table-column>
|
af0d559b
梁保满
样式调整
|
302
|
<el-table-column label="学生信息" align="center"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
303
304
|
><template slot-scope="scoped"
><p
|
6d7bd862
梁保满
飞书bug
|
305
306
|
v-for="(item, index) in scoped.row.studentList"
:key="index"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
307
308
309
310
311
|
>
{{ item.studentName }}
</p></template
></el-table-column
>
|
e5e4a3e6
梁保满
v1.3
|
312
313
314
315
316
317
318
319
320
321
322
|
<el-table-column
v-if="role == 'ROLE_JITUAN'"
prop="schoolName"
label="学校"
align="center"
></el-table-column>
<el-table-column
v-if="role == 'ROLE_JITUAN'"
prop="gradeName"
label="年级"
align="center"
|
4c2fb560
梁保满
反馈新需求
|
323
|
width="120"
|
e5e4a3e6
梁保满
v1.3
|
324
325
326
327
328
329
|
><template slot-scope="scoped">
<p v-for="(item, index) in scoped.row.classList" :key="index">
{{ item.gradeName }}
</p>
</template></el-table-column
>
|
4c2fb560
梁保满
反馈新需求
|
330
331
332
333
334
335
|
<el-table-column
prop="class"
label="关联班级"
align="center"
width="160"
>
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
336
|
<template slot-scope="scoped">
|
6d7bd862
梁保满
飞书bug
|
337
|
<p v-for="(item, index) in scoped.row.classList" :key="index">
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
338
339
340
341
|
{{ item.className }}
</p>
</template></el-table-column
>
|
5fb1f184
梁保满
答题器管理:不显示 题器配对码,修...
|
342
|
<!-- <el-table-column
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
343
|
prop="pairingCode"
|
db11048f
阿宝
设备状态,学校管理
|
344
345
|
label="配对码"
align="center"
|
5fb1f184
梁保满
答题器管理:不显示 题器配对码,修...
|
346
|
></el-table-column> -->
|
cffc1a98
梁保满
3-8BUG
|
347
|
<!-- <el-table-column
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
348
|
prop="answerTimes"
|
db11048f
阿宝
设备状态,学校管理
|
349
350
|
label="答题次数"
align="center"
|
cffc1a98
梁保满
3-8BUG
|
351
|
></el-table-column> -->
|
db11048f
阿宝
设备状态,学校管理
|
352
|
<el-table-column
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
353
|
prop="latestReportTime"
|
db11048f
阿宝
设备状态,学校管理
|
354
355
|
label="最后答题时间"
align="center"
|
4c2fb560
梁保满
反馈新需求
|
356
|
width="160"
|
db11048f
阿宝
设备状态,学校管理
|
357
|
></el-table-column>
|
4c2fb560
梁保满
反馈新需求
|
358
|
<el-table-column label="操作" align="center" width="80"
|
db11048f
阿宝
设备状态,学校管理
|
359
360
361
362
363
364
365
366
367
368
369
370
371
372
|
><template slot-scope="scoped">
<el-tooltip effect="dark" content="日志" placement="top">
<el-button
type="warning"
circle
size="mini"
icon="fa fa-eye"
@click="linkTo(scoped.row, 2)"
></el-button>
</el-tooltip> </template
></el-table-column>
</el-table>
</div>
</div>
|
8ea67428
梁保满
飞书bug
|
373
|
<div v-show="type == 3">
|
db11048f
阿宝
设备状态,学校管理
|
374
375
376
377
|
<div class="table-box">
<div class="answer-header">
<div class="sel-box">
<el-cascader
|
225a00b6
梁保满
飞书问题解决
|
378
|
size="small"
|
5be3bb70
梁保满
切换账号,缓存组件接口报错问题
|
379
|
class="sel sel2"
|
db11048f
阿宝
设备状态,学校管理
|
380
381
382
|
clearable
placeholder="选择班级"
v-model="query.classId"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
383
|
:options="gradeList"
|
db11048f
阿宝
设备状态,学校管理
|
384
|
:props="props"
|
5be3bb70
梁保满
切换账号,缓存组件接口报错问题
|
385
|
collapse-tags
|
db11048f
阿宝
设备状态,学校管理
|
386
387
388
|
:show-all-levels="false"
@change="_QueryData(false)"
></el-cascader>
|
e5ff81a1
阿宝
集团管理员接口
|
389
390
391
|
<span class="sel"
>共选择{{ selectionTabIds.length }}个授课端</span
>
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
392
|
<el-button plan round @click="autoUpDate(false)"
|
db11048f
阿宝
设备状态,学校管理
|
393
394
|
>开启自动更新</el-button
>
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
395
|
<el-button plan round @click="stopUpdate(false)"
|
db11048f
阿宝
设备状态,学校管理
|
396
397
398
|
>停止自动更新</el-button
>
</div>
|
ec6394d1
梁保满
v1.3.1。细节调整
|
399
400
401
402
403
|
<p class="upgrade-all" v-if="this.role == 'ROLE_XUEXIAO'">
<span>全校更新:</span>
<el-switch v-model="upgradeFlag" @change="changeUpdateBySchool">
</el-switch>
</p>
|
db11048f
阿宝
设备状态,学校管理
|
404
|
</div>
|
47a01cb6
梁保满
v1.3测试问题
|
405
406
407
|
<p class="loading" v-if="!tableData.length && loading">
加载中<i class="el-icon-loading"></i>
</p>
|
db11048f
阿宝
设备状态,学校管理
|
408
|
<el-table
|
47a01cb6
梁保满
v1.3测试问题
|
409
|
v-else
|
0e46bc25
梁保满
优化
|
410
|
ref="multipleTable"
|
db11048f
阿宝
设备状态,学校管理
|
411
412
413
414
415
|
:data="tableData"
border
style="width: 100%"
@selection-change="handleSelectionChange"
>
|
6d7bd862
梁保满
飞书bug
|
416
|
<el-table-column type="selection" width="55"></el-table-column>
|
a0d49348
梁保满
授课端管理添加设备编码,随堂问、即...
|
417
418
419
420
421
|
<el-table-column
prop="sn"
label="设备编码"
align="center"
></el-table-column>
|
47a01cb6
梁保满
v1.3测试问题
|
422
423
424
425
426
|
<el-table-column
prop="class"
label="关联班级"
align="center"
width="100"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
427
|
><template slot-scope="scoped">
|
6d7bd862
梁保满
飞书bug
|
428
|
<p v-for="(item, index) in scoped.row.classList" :key="index">
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
429
430
431
432
|
{{ item.className }}
</p>
</template></el-table-column
>
|
db11048f
阿宝
设备状态,学校管理
|
433
|
<el-table-column
|
e5e4a3e6
梁保满
v1.3
|
434
435
436
437
438
439
|
v-if="role == 'ROLE_JITUAN'"
prop="schoolName"
label="学校"
align="center"
></el-table-column>
<el-table-column
|
4c2fb560
梁保满
反馈新需求
|
440
441
442
443
444
445
446
447
448
449
450
451
|
v-if="role == 'ROLE_JITUAN'"
prop="gradeName"
label="年级"
align="center"
width="80"
><template slot-scope="scoped">
<p v-for="(item, index) in scoped.row.classList" :key="index">
{{ item.gradeName }}
</p>
</template></el-table-column
>
<el-table-column
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
452
|
prop="lastUpdateTime"
|
db11048f
阿宝
设备状态,学校管理
|
453
454
455
456
|
label="最近更新"
align="center"
></el-table-column>
<el-table-column
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
457
|
prop="osInfo"
|
db11048f
阿宝
设备状态,学校管理
|
458
459
460
461
|
label="软件系统"
align="center"
></el-table-column>
<el-table-column
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
462
|
prop="hardwareInfo"
|
db11048f
阿宝
设备状态,学校管理
|
463
464
465
466
|
label="硬件环境"
align="center"
></el-table-column>
<el-table-column
|
255e2506
梁保满
飞书bug及优化
|
467
|
prop="otaVersionName"
|
db11048f
阿宝
设备状态,学校管理
|
468
469
|
label="版本号"
align="center"
|
4c2fb560
梁保满
反馈新需求
|
470
|
width="80"
|
db11048f
阿宝
设备状态,学校管理
|
471
|
></el-table-column>
|
47a01cb6
梁保满
v1.3测试问题
|
472
|
<el-table-column label="状态" align="center" width="80"
|
db11048f
阿宝
设备状态,学校管理
|
473
474
|
><template slot-scope="scope">
{{
|
6d7bd862
梁保满
飞书bug
|
475
|
scope.row.onlineStatus == 1
|
db11048f
阿宝
设备状态,学校管理
|
476
|
? "在线"
|
6d7bd862
梁保满
飞书bug
|
477
478
479
|
: scope.row.onlineStatus == 2
? "异常"
: "离线"
|
db11048f
阿宝
设备状态,学校管理
|
480
481
|
}}
</template></el-table-column
|
47a01cb6
梁保满
v1.3测试问题
|
482
483
|
>
<el-table-column label="自动更新" align="center" width="100"
|
db11048f
阿宝
设备状态,学校管理
|
484
485
|
><template slot-scope="scoped">
<el-switch
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
486
|
v-model="scoped.row.upgradeFlag"
|
db11048f
阿宝
设备状态,学校管理
|
487
488
489
490
491
492
493
|
@change="changeUpdate($event, scoped.row, this)"
>
</el-switch> </template
></el-table-column>
</el-table>
</div>
</div>
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
494
495
496
497
498
499
500
501
502
503
504
505
|
<div class="pagination-box">
<el-pagination
small=""
layout="total,prev, pager, next"
:hide-on-single-page="true"
:total="total"
@current-change="changePage"
:current-page="page"
:page-size="size"
>
</el-pagination>
</div>
|
db11048f
阿宝
设备状态,学校管理
|
506
507
508
|
</div>
</div>
<el-dialog title="设备导入" :visible.sync="diaUp" width="400">
|
87abc4f3
梁保满
基站上传接口地址修改
|
509
|
<up-load :url="url" @upSuccess="upSuccess" fileName="设备信息">
|
db11048f
阿宝
设备状态,学校管理
|
510
511
|
<p class="down-txt" slot="down">
通过Excel名单导入设备,需要提供设备编码,点击
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
512
|
<el-link type="danger" @click="downExcel">模板下载</el-link> 。
|
db11048f
阿宝
设备状态,学校管理
|
513
514
515
516
517
518
|
</p>
</up-load>
<div class="dialog-footer" slot="footer">
<el-button @click="diaUp = false">取 消</el-button>
</div>
</el-dialog>
|
0e46bc25
梁保满
优化
|
519
520
521
522
523
|
<el-dialog
:title="isAdd ? '添加基站' : '修改基站'"
:visible.sync="diaAnswerEqu"
width="400"
>
|
db11048f
阿宝
设备状态,学校管理
|
524
|
<el-form ref="forms" :model="form" :rules="formRules" label-width="140px">
|
1365ef5e
梁保满
优化
|
525
|
<el-form-item label="设备编码:" prop="sn">
|
6d7bd862
梁保满
飞书bug
|
526
|
<el-col :span="16"
|
db11048f
阿宝
设备状态,学校管理
|
527
528
529
|
><el-input
type="text"
placeholder="输入设备编码"
|
1365ef5e
梁保满
优化
|
530
|
v-model.trim="form.sn"
|
db11048f
阿宝
设备状态,学校管理
|
531
532
533
|
maxlength="30"
size="45"
show-word-limit
|
e3b0e3e7
梁保满
季度时间格式调整
|
534
|
:disabled="!isAdd"
|
db11048f
阿宝
设备状态,学校管理
|
535
536
537
538
|
>
</el-input
></el-col>
</el-form-item>
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
539
|
<el-form-item label="频点:" prop="frequency">
|
6d7bd862
梁保满
飞书bug
|
540
|
<el-col :span="16"
|
db11048f
阿宝
设备状态,学校管理
|
541
542
543
|
><el-input
type="text"
placeholder="输入频点"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
544
|
v-model.trim="form.frequency"
|
db11048f
阿宝
设备状态,学校管理
|
545
546
547
548
549
550
551
|
maxlength="30"
size="45"
show-word-limit
>
</el-input
></el-col>
</el-form-item>
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
552
|
<el-form-item label="配对码:" prop="pairingCode">
|
6d7bd862
梁保满
飞书bug
|
553
|
<el-col :span="16"
|
db11048f
阿宝
设备状态,学校管理
|
554
555
556
|
><el-input
type="text"
placeholder="输入配对码"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
557
|
v-model.trim="form.pairingCode"
|
db11048f
阿宝
设备状态,学校管理
|
558
559
560
561
562
563
564
|
maxlength="30"
size="45"
show-word-limit
>
</el-input
></el-col>
</el-form-item>
|
6d7bd862
梁保满
飞书bug
|
565
566
|
<el-form-item label="选择班级:" prop="classIds">
<el-col :span="16">
|
db11048f
阿宝
设备状态,学校管理
|
567
|
<el-cascader
|
6d7bd862
梁保满
飞书bug
|
568
|
class="sel"
|
db11048f
阿宝
设备状态,学校管理
|
569
|
clearable
|
6d7bd862
梁保满
飞书bug
|
570
|
v-model="form.classIds"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
571
|
:options="gradeList"
|
db11048f
阿宝
设备状态,学校管理
|
572
573
574
575
576
|
:show-all-levels="false"
></el-cascader>
</el-col>
</el-form-item>
<el-form-item label="所在教室:">
|
6d7bd862
梁保满
飞书bug
|
577
|
<el-col :span="16"
|
db11048f
阿宝
设备状态,学校管理
|
578
579
580
|
><el-input
type="text"
placeholder="输入所在教室"
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
581
|
v-model.trim="form.roomName"
|
db11048f
阿宝
设备状态,学校管理
|
582
583
584
585
586
587
588
589
590
|
maxlength="30"
size="45"
show-word-limit
>
</el-input
></el-col>
</el-form-item>
</el-form>
<div class="dialog-footer" slot="footer">
|
236b1f0e
梁保满
周末-飞书bug
|
591
|
<el-button type="primary" @click="setAnswerEqu">确 定</el-button>
|
db11048f
阿宝
设备状态,学校管理
|
592
593
594
|
<el-button @click="diaAnswerEqu = false">取 消</el-button>
</div>
</el-dialog>
|
bb778c90
阿宝
设备状态
|
595
|
</div>
|
4c4f7640
梁保满
路由表,路由前端文件
|
596
597
598
|
</template>
<script>
|
db11048f
阿宝
设备状态,学校管理
|
599
600
601
|
import pieChart from "@/components/charts/pieChart";
import scatterChart from "@/components/charts/scatterChart";
import _ from "lodash";
|
191d5bfa
梁保满
学生管理、基站管理下载名称设置,上...
|
602
|
import { downloadFile, getBlob, formatGradeNameClass } from "@/utils";
|
255e2506
梁保满
飞书bug及优化
|
603
|
import api from "@/api/apis/apis";
|
db11048f
阿宝
设备状态,学校管理
|
604
605
|
export default {
components: { pieChart, scatterChart },
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
606
607
608
609
|
watch: {
type: function (val) {
this.page = 1;
this.total = 0;
|
225a00b6
梁保满
飞书问题解决
|
610
|
this.count = 0;
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
611
612
613
|
this.query.classId = [];
this.query.onlineStatus = "";
this.query.sn = "";
|
4c2fb560
梁保满
反馈新需求
|
614
|
this.query.studentName = "";
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
615
616
617
618
619
620
621
622
623
|
this.query.type = "";
if (val == 1) {
this.stationReport();
} else if (val == 2) {
this.keyboardReport();
}
this._QueryData();
},
},
|
db11048f
阿宝
设备状态,学校管理
|
624
625
|
data() {
return {
|
d32e461c
梁保满
备题组卷
|
626
|
code: "",
|
4c2fb560
梁保满
反馈新需求
|
627
|
role: "",
|
db11048f
阿宝
设备状态,学校管理
|
628
|
loading: false,
|
4c2fb560
梁保满
反馈新需求
|
629
630
|
exportLoading: false,
isAdd: false, //添加还是修改基站
|
87abc4f3
梁保满
基站上传接口地址修改
|
631
|
url: "/api_html/school/manager/importStation",
|
db11048f
阿宝
设备状态,学校管理
|
632
633
|
diaUp: false,
diaAnswerEqu: false,
|
4c2fb560
梁保满
反馈新需求
|
634
635
|
gradeList: [], //年级列表
schoolAll: [], //所有学校刘表
|
e3b0e3e7
梁保满
季度时间格式调整
|
636
|
school: {}, //校园账号所属学校信息
|
255e2506
梁保满
飞书bug及优化
|
637
638
639
|
props: {
multiple: true,
checkStrictly: true,
|
255e2506
梁保满
飞书bug及优化
|
640
|
},
|
db11048f
阿宝
设备状态,学校管理
|
641
642
643
|
type: 1,
query: {
classId: [],
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
644
645
646
|
onlineStatus: "",
sn: "",
type: "",
|
4c2fb560
梁保满
反馈新需求
|
647
|
studentName: "",
|
db11048f
阿宝
设备状态,学校管理
|
648
649
|
},
statusList: [
|
dbbfc6c5
梁保满
飞书优化及bug
|
650
|
{ label: "全部", value: "" },
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
651
|
{ label: "离线", value: 0 },
|
db11048f
阿宝
设备状态,学校管理
|
652
|
{ label: "在线", value: 1 },
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
653
654
655
656
657
658
659
660
661
662
|
{ label: "异常", value: 2 },
],
typeList: [
{ label: "全部", value: 0 },
{ label: "1日内", value: 1 },
{ label: "3日内", value: 2 },
{ label: "7日内", value: 3 },
{ label: "1月内", value: 4 },
{ label: "3月内", value: 5 },
{ label: "3月以上", value: 6 },
|
db11048f
阿宝
设备状态,学校管理
|
663
664
|
],
form: {
|
4c2fb560
梁保满
反馈新需求
|
665
|
//修改/添加基站信息
|
255e2506
梁保满
飞书bug及优化
|
666
|
deviceId: "",
|
1365ef5e
梁保满
优化
|
667
|
sn: "",
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
668
669
|
frequency: "",
pairingCode: "",
|
183bfae8
梁保满
设备修改班级选择调整
|
670
|
classIds: [],
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
671
|
roomName: "",
|
db11048f
阿宝
设备状态,学校管理
|
672
673
|
},
formRules: {
|
e3b0e3e7
梁保满
季度时间格式调整
|
674
|
sn: [{ required: true, message: "请输入设备编码", trigger: "blur" }],
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
675
676
677
678
|
frequency: [{ required: true, message: "请输入频点", trigger: "blur" }],
pairingCode: [
{ required: true, message: "请输入配对码", trigger: "blur" },
],
|
4c2fb560
梁保满
反馈新需求
|
679
|
// classIds: [{ required: true, message: "请选择班级", trigger: "blur" }],
|
db11048f
阿宝
设备状态,学校管理
|
680
|
},
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
681
682
|
tableData: [],
total: 0,
|
225a00b6
梁保满
飞书问题解决
|
683
|
count: 0,
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
684
685
|
chartData: [],
chartData2: [],
|
4c2fb560
梁保满
反馈新需求
|
686
|
selectionTabIds: [], //已选择授课段
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
687
688
|
page: 1,
size: 20,
|
4c2fb560
梁保满
反馈新需求
|
689
|
isBack: false, //是否是日志页面回来
|
ec6394d1
梁保满
v1.3.1。细节调整
|
690
|
upgradeFlag: false,
|
db11048f
阿宝
设备状态,学校管理
|
691
692
693
|
};
},
created() {
|
e3b0e3e7
梁保满
季度时间格式调整
|
694
|
this.code = localStorage.getItem("csCode") || "";
|
87053bc8
梁保满
设备状态模版下载更新
|
695
696
697
|
this.role =
this.$store.getters.info.showRole ||
this.$store.getters.info.permissions[0].role;
|
255e2506
梁保满
飞书bug及优化
|
698
|
if (this.role == "ROLE_JITUAN") {
|
e3b0e3e7
梁保满
季度时间格式调整
|
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
|
(this.props.lazy = true),
(this.props.lazyLoad = function (node, resolve) {
const { level } = node;
if (level == 2) {
console.log(node);
api
.tenantClassList({
schoolId: node.data.value,
})
.then((res) => {
let children = formatGradeNameClass(res.data?.list).sort(
(a, b) => {
return a.grade - b.grade;
}
);
console.log();
|
255e2506
梁保满
飞书bug及优化
|
715
|
|
e3b0e3e7
梁保满
季度时间格式调整
|
716
717
718
719
720
721
722
723
724
725
726
|
const nodes = [...children];
// 通过调用resolve将子节点数据返回,通知组件数据加载完成
resolve(nodes);
});
} else {
resolve(node);
}
});
}
if (this.role == "ROLE_XUEXIAO") {
this._QueryDataSchool();
|
255e2506
梁保满
飞书bug及优化
|
727
|
}
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
728
|
this._QueryGradeList();
|
11cb8ce0
梁保满
样式调整
|
729
|
if (this.role == "ROLE_JITUAN") {
|
225a00b6
梁保满
飞书问题解决
|
730
731
|
this.showSchool();
}
|
db11048f
阿宝
设备状态,学校管理
|
732
|
},
|
5be3bb70
梁保满
切换账号,缓存组件接口报错问题
|
733
734
|
activated() {
const that = this;
|
e5e4a3e6
梁保满
v1.3
|
735
736
737
|
this.isBack = this.$route.query.back ? this.$route.query.back : false;
console.log(this.$route.query.back);
if (!this.isBack) {
|
5be3bb70
梁保满
切换账号,缓存组件接口报错问题
|
738
739
740
741
742
743
744
745
|
that.type = 1;
that.page = 1;
that.total = 0;
that.count = 0;
that.query.classId = [];
that.query.onlineStatus = "";
that.query.sn = "";
that.query.type = "";
|
47a01cb6
梁保满
v1.3测试问题
|
746
747
748
749
|
if (this.role == "ROLE_XUEXIAO") {
this._QueryDataSchool();
}
this._QueryGradeList();
|
5be3bb70
梁保满
切换账号,缓存组件接口报错问题
|
750
751
|
that.stationReport();
that._QueryData();
|
e5e4a3e6
梁保满
v1.3
|
752
|
}
|
5be3bb70
梁保满
切换账号,缓存组件接口报错问题
|
753
|
},
|
db11048f
阿宝
设备状态,学校管理
|
754
|
methods: {
|
191d5bfa
梁保满
学生管理、基站管理下载名称设置,上...
|
755
|
upSuccess(res) {
|
e3b0e3e7
梁保满
季度时间格式调整
|
756
|
//导入成功
|
191d5bfa
梁保满
学生管理、基站管理下载名称设置,上...
|
757
758
759
|
this.$message.closeAll();
this.$message({
showClose: true,
|
fc9cbff6
梁保满
上传信息显示调整
|
760
|
message: `成功(${res.data.success})`,
|
191d5bfa
梁保满
学生管理、基站管理下载名称设置,上...
|
761
|
type: "success",
|
183bfae8
梁保满
设备修改班级选择调整
|
762
|
duration: 5000,
|
191d5bfa
梁保满
学生管理、基站管理下载名称设置,上...
|
763
|
});
|
e3b0e3e7
梁保满
季度时间格式调整
|
764
|
this.diaUp = false;
|
87abc4f3
梁保满
基站上传接口地址修改
|
765
|
this.page = 1;
|
255e2506
梁保满
飞书bug及优化
|
766
767
|
this._QueryData();
},
|
575eb544
梁保满
账号异常提示,放开长水学校管理员设...
|
768
769
|
edit(obj) {
//修改设备
|
0e46bc25
梁保满
优化
|
770
|
this.isAdd = false;
|
255e2506
梁保满
飞书bug及优化
|
771
772
|
for (let key in this.form) {
if (key == "classIds") {
|
5fb1f184
梁保满
答题器管理:不显示 题器配对码,修...
|
773
774
775
|
this.form[key] = obj.classList.length
? [obj.classList[0].gradeName, obj.classList[0].classId]
: [];
|
255e2506
梁保满
飞书bug及优化
|
776
777
|
} else {
this.form[key] = obj[key];
|
6d7bd862
梁保满
飞书bug
|
778
779
|
}
}
|
0e46bc25
梁保满
优化
|
780
|
delete this.form.schoolId;
|
e3b0e3e7
梁保满
季度时间格式调整
|
781
|
this.form.deviceId = obj.id;
|
255e2506
梁保满
飞书bug及优化
|
782
|
this.diaAnswerEqu = true;
|
6d7bd862
梁保满
飞书bug
|
783
|
},
|
db11048f
阿宝
设备状态,学校管理
|
784
785
786
787
788
789
790
791
792
793
|
linkTo(obj, type) {
this.$router.push({
path: "/deviceLog",
query: {
id: obj.id,
type: type,
},
});
},
clickPieChart(obj) {
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
794
795
796
|
this.query.onlineStatus =
obj.name == "在线" ? 1 : obj.name == "离线" ? 0 : 2;
this.query.sn = "";
|
c4eb9615
梁保满
日志页面调整
|
797
|
this.query.classId = [];
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
798
|
this.page = 1;
|
b21d90ef
梁保满
长水登录
|
799
|
this._QueryData(false);
|
db11048f
阿宝
设备状态,学校管理
|
800
801
|
},
clickScatterChart(obj) {
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
802
803
804
805
806
807
808
809
810
811
812
813
814
|
this.query.type =
obj.name == "1日内"
? 1
: obj.name == "3日内"
? 2
: obj.name == "7日内"
? 3
: obj.name == "1月内"
? 4
: obj.name == "3月内"
? 5
: 6;
this.query.sn = "";
|
c4eb9615
梁保满
日志页面调整
|
815
|
this.query.classId = [];
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
816
|
this.page = 1;
|
b21d90ef
梁保满
长水登录
|
817
|
this._QueryData(false);
|
db11048f
阿宝
设备状态,学校管理
|
818
819
820
821
822
823
824
|
},
handleSelectionChange(val) {
console.log(val);
this.selectionTabIds = val.map((item) => {
return item.id;
});
},
|
ec6394d1
梁保满
v1.3.1。细节调整
|
825
826
827
|
changeUpdateBySchool: _.debounce(function (event) {
this._ModifyUpgradeFlagBySchool();
}, 800),
|
db11048f
阿宝
设备状态,学校管理
|
828
829
830
831
832
833
834
835
|
changeUpdate: _.debounce(function (event, obj) {
console.log(this);
if (event) {
this.autoUpDate(obj.id);
} else {
this.stopUpdate(obj.id);
}
}, 800),
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
836
837
|
changePage(page) {
this.page = page;
|
b21d90ef
梁保满
长水登录
|
838
|
this._QueryData(false);
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
839
|
},
|
e3b0e3e7
梁保满
季度时间格式调整
|
840
841
842
843
|
addDev() {
this.form.sn = "";
this.form.frequency = "";
this.form.pairingCode = "";
|
183bfae8
梁保满
设备修改班级选择调整
|
844
|
this.form.classIds = [];
|
e3b0e3e7
梁保满
季度时间格式调整
|
845
|
this.form.roomName = "";
|
0e46bc25
梁保满
优化
|
846
847
848
|
this.form.schoolId = this.school.id;
delete this.form.deviceId;
this.isAdd = true;
|
e3b0e3e7
梁保满
季度时间格式调整
|
849
850
|
this.diaAnswerEqu = true;
},
|
ec6394d1
梁保满
v1.3.1。细节调整
|
851
852
853
854
855
856
857
858
859
860
861
862
|
_ModifyUpgradeFlagBySchool() {
let data = this.$request.modifyUpgradeFlagBySchool({
upgradeFlag: this.upgradeFlag ? 1 : 0,
});
if (data && !data.code) {
this._QueryData(false);
this.selectionTabIds = [];
this.$message.success("开启自动更新成功");
} else {
this.$message.error(data.info);
}
},
|
225a00b6
梁保满
飞书问题解决
|
863
|
async showSchool() {
|
296f7c47
梁保满
集团管理员接口调整
|
864
865
|
const { data, status, info } = await this.$request.schoolList();
if (status === 0) {
|
183bfae8
梁保满
设备修改班级选择调整
|
866
867
868
869
870
871
|
let gradeListAll = data.list?.map((item) => {
return {
value: item.id,
label: item.schoolName,
};
});
|
225a00b6
梁保满
飞书问题解决
|
872
873
874
875
|
this.schoolAll = [
{
value: 0,
label: "全部",
|
183bfae8
梁保满
设备修改班级选择调整
|
876
|
children: [...gradeListAll],
|
225a00b6
梁保满
飞书问题解决
|
877
878
879
|
},
];
this.gradeList = [...this.schoolAll, ...this.gradeList];
|
296f7c47
梁保满
集团管理员接口调整
|
880
881
882
883
|
} else {
this.$message.error(info);
}
},
|
db11048f
阿宝
设备状态,学校管理
|
884
885
886
887
888
889
890
|
async autoUpDate(id) {
if (!this.selectionTabIds.length && !id) {
this.$message.warning("请选择授课端~");
return;
}
if (this.loadingUpDate) return;
this.loadingUpDate = true;
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
891
|
let data = await this.$request.modifyUpgradeFlag({
|
dd5150c5
阿宝
数据同步
|
892
|
deviceIds: id ? [id] : this.selectionTabIds,
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
893
|
upgradeFlag: 1,
|
db11048f
阿宝
设备状态,学校管理
|
894
895
896
897
|
});
this.loadingUpDate = false;
if (data && !data.code) {
this._QueryData(false);
|
e5ff81a1
阿宝
集团管理员接口
|
898
|
this.selectionTabIds = [];
|
db11048f
阿宝
设备状态,学校管理
|
899
900
|
this.$message.success("开启自动更新成功");
} else {
|
236b1f0e
梁保满
周末-飞书bug
|
901
|
this.$message.error(data.info);
|
db11048f
阿宝
设备状态,学校管理
|
902
903
904
905
906
907
908
909
910
|
}
},
async stopUpdate(id) {
if (!this.selectionTabIds.length && !id) {
this.$message.warning("请选择授课端~");
return;
}
if (this.loadingUpDate) return;
this.loadingUpDate = true;
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
911
|
let data = await this.$request.modifyUpgradeFlag({
|
dd5150c5
阿宝
数据同步
|
912
|
deviceIds: id ? [id] : this.selectionTabIds,
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
913
|
upgradeFlag: 0,
|
db11048f
阿宝
设备状态,学校管理
|
914
915
916
|
});
this.loadingUpDate = false;
if (data && !data.code) {
|
e5ff81a1
阿宝
集团管理员接口
|
917
|
this.selectionTabIds = [];
|
db11048f
阿宝
设备状态,学校管理
|
918
919
920
|
this._QueryData(false);
this.$message.success("关闭自动更新成功");
} else {
|
236b1f0e
梁保满
周末-飞书bug
|
921
|
this.$message.error(data.info);
|
db11048f
阿宝
设备状态,学校管理
|
922
923
924
|
}
},
async downExcel() {
|
87053bc8
梁保满
设备状态模版下载更新
|
925
|
let data = await this.$request.stationTemplate({
|
db11048f
阿宝
设备状态,学校管理
|
926
927
|
id: this.id,
});
|
87053bc8
梁保满
设备状态模版下载更新
|
928
929
930
931
932
|
if (data) {
let blob = new Blob([data], {
type: "application/vnd.ms-excel;charset=utf-8",
});
downloadFile(`基站模版.xlsx`, blob);
|
db11048f
阿宝
设备状态,学校管理
|
933
|
} else {
|
87053bc8
梁保满
设备状态模版下载更新
|
934
|
this.$message.error("下载失败");
|
db11048f
阿宝
设备状态,学校管理
|
935
936
|
}
},
|
ae0a304c
梁保满
学生管理-显示班级基站信息
|
937
|
async downExl() {
|
e5e4a3e6
梁保满
v1.3
|
938
|
//报表导出
|
ae0a304c
梁保满
学生管理-显示班级基站信息
|
939
|
if (this.exportLoading == true) return;
|
e5e4a3e6
梁保满
v1.3
|
940
|
let query = this.setQuery();
|
4c2fb560
梁保满
反馈新需求
|
941
942
943
944
945
|
const exportDevice =
this.role != "ROLE_JITUAN"
? this.$request.exportDevice
: this.$request.tenantExportDevice;
|
ae0a304c
梁保满
学生管理-显示班级基站信息
|
946
|
this.exportLoading = true;
|
4c2fb560
梁保满
反馈新需求
|
947
|
const data = await exportDevice({
|
e5e4a3e6
梁保满
v1.3
|
948
949
950
|
...query,
deviceType: this.type,
});
|
ae0a304c
梁保满
学生管理-显示班级基站信息
|
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
|
this.exportLoading = false;
if (data && !data.code) {
let blob = new Blob([data], {
type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
});
let txt =
this.type == 1
? "基站管理报表.xlsx"
: this.type == 2
? "答题器报表.xlsx"
: "授课端报表.xlsx";
downloadFile(txt, blob);
} else {
this.$message.error(data.info);
}
},
|
db11048f
阿宝
设备状态,学校管理
|
967
|
|
236b1f0e
梁保满
周末-飞书bug
|
968
969
|
// 修改基站
setAnswerEqu() {
|
6d7bd862
梁保满
飞书bug
|
970
971
972
973
|
this.$refs.forms.validate(async (valid) => {
if (valid) {
if (this.loadingAnswerEqu) return;
this.loadingAnswerEqu = true;
|
255e2506
梁保满
飞书bug及优化
|
974
|
let query = { ...this.form };
|
236b1f0e
梁保满
周末-飞书bug
|
975
|
|
5fb1f184
梁保满
答题器管理:不显示 题器配对码,修...
|
976
|
query.classIds = query.classIds.length ? [query.classIds[1]] : [];
|
0e46bc25
梁保满
优化
|
977
978
979
|
let deviceApi = this.isAdd
? this.$request.addStation
: this.$request.updateDevice;
|
e3b0e3e7
梁保满
季度时间格式调整
|
980
|
const { data, status, info } = await deviceApi({
|
255e2506
梁保满
飞书bug及优化
|
981
982
|
...query,
});
|
6d7bd862
梁保满
飞书bug
|
983
984
985
|
this.loadingAnswerEqu = false;
console.log(status);
if (status === 0) {
|
255e2506
梁保满
飞书bug及优化
|
986
|
this.diaAnswerEqu = false;
|
1365ef5e
梁保满
优化
|
987
|
this.$message.success(info);
|
6d7bd862
梁保满
飞书bug
|
988
|
this._QueryData();
|
0e46bc25
梁保满
优化
|
989
990
|
if (this.isAdd) {
this.stationReport();
|
e3b0e3e7
梁保满
季度时间格式调整
|
991
|
}
|
6d7bd862
梁保满
飞书bug
|
992
993
994
995
996
997
998
|
} else {
this.$message.error(info);
}
} else {
this.$message.warning("数据有误,请检查!");
}
});
|
db11048f
阿宝
设备状态,学校管理
|
999
|
},
|
e3b0e3e7
梁保满
季度时间格式调整
|
1000
1001
1002
1003
1004
1005
1006
1007
|
async _QueryDataSchool() {
const { data, status, info } = await this.$request.schoolDetail();
if (status === 0) {
this.school = { ...data };
} else {
this.$message.error(info);
}
},
|
db11048f
阿宝
设备状态,学校管理
|
1008
|
// 查找班级
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1009
1010
|
async _QueryGradeList() {
this.loading = true;
|
e5ff81a1
阿宝
集团管理员接口
|
1011
1012
1013
1014
1015
|
const gradeList =
this.role != "ROLE_JITUAN"
? this.$request.gradeList
: this.$request.regionList;
const { data, status, info } = await gradeList();
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1016
1017
|
if (status === 0) {
if (!!data.list) {
|
e5ff81a1
阿宝
集团管理员接口
|
1018
1019
1020
1021
|
if (this.role != "ROLE_JITUAN") {
this.gradeList =
data.list?.map((item) => {
let gradeList = {
|
1b9bae95
梁保满
级联选择器调整,日志接口调整
|
1022
|
value: item.gradeName,
|
e5ff81a1
阿宝
集团管理员接口
|
1023
1024
1025
1026
1027
|
label: item.gradeName,
};
gradeList.children =
item.classList?.map((items) => {
return {
|
1365ef5e
梁保满
优化
|
1028
|
value: Number(items.id),
|
e5ff81a1
阿宝
集团管理员接口
|
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
|
label: items.className,
};
}) || [];
return gradeList;
}) || [];
} else {
this.gradeList =
data.list?.map((item) => {
let gradeList = {
value: item.id,
label: item.regionName,
};
gradeList.children =
item.schoolList?.map((items) => {
return {
value: items.id,
label: items.schoolName,
};
}) || [];
return gradeList;
}) || [];
|
225a00b6
梁保满
飞书问题解决
|
1050
|
this.gradeList = [...this.schoolAll, ...this.gradeList];
|
e5ff81a1
阿宝
集团管理员接口
|
1051
|
}
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1052
1053
1054
1055
1056
1057
1058
|
}
} else {
this.$message.error(info);
}
},
// 基站统计数据
async stationReport() {
|
e5ff81a1
阿宝
集团管理员接口
|
1059
1060
1061
1062
1063
|
const stationReport =
this.role != "ROLE_JITUAN"
? this.$request.stationReport
: this.$request.tenantStationReport;
const { data, status, info } = await stationReport();
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1064
1065
1066
1067
1068
|
if (status === 0) {
this.chartData =
data.list?.map((item) => {
return {
name:
|
e5ff81a1
阿宝
集团管理员接口
|
1069
1070
1071
1072
1073
|
item.onlineStatus == "1"
? "在线"
: item.onlineStatus == 0
? "离线"
: "异常",
|
296f7c47
梁保满
集团管理员接口调整
|
1074
1075
|
value: item.total,
rate: item.rate,
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1076
1077
|
};
}) || [];
|
225a00b6
梁保满
飞书问题解决
|
1078
|
this.count = data.total || 0;
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1079
1080
1081
1082
1083
1084
|
} else {
this.$message.error(info);
}
},
// 答题器统计数据
async keyboardReport() {
|
e5ff81a1
阿宝
集团管理员接口
|
1085
1086
1087
1088
1089
|
const keyboardReport =
this.role != "ROLE_JITUAN"
? this.$request.keyboardReport
: this.$request.tenantKeyboardReport;
const { data, status, info } = await keyboardReport();
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
|
if (status === 0) {
this.chartData2 =
data.list?.map((item) => {
return {
name:
item.type == 1
? "1日内"
: item.type == 2
? "3日内"
: item.type == 3
? "7日内"
: item.type == 4
? "1月内"
: item.type == 5
? "3月内"
: "3月以上",
|
225a00b6
梁保满
飞书问题解决
|
1106
1107
|
count: item.total,
value: item.rate * 100,
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1108
1109
|
};
}) || [];
|
225a00b6
梁保满
飞书问题解决
|
1110
|
this.count = data.total || 0;
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1111
1112
1113
|
} else {
this.$message.error(info);
}
|
db11048f
阿宝
设备状态,学校管理
|
1114
|
},
|
225a00b6
梁保满
飞书问题解决
|
1115
1116
1117
|
setQuery() {
//整理传参
let query = {};
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1118
|
if (this.query.sn) {
|
5e2e009a
梁保满
基站筛选条件显示问题,归档文本替换
|
1119
1120
1121
1122
|
this.query.classId = [];
this.query.onlineStatus = "";
this.query.type = "";
this.query.studentName = "";
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1123
|
query.sn = this.query.sn;
|
4c2fb560
梁保满
反馈新需求
|
1124
|
} else if (this.query.studentName) {
|
5e2e009a
梁保满
基站筛选条件显示问题,归档文本替换
|
1125
1126
1127
1128
|
this.query.classId = [];
this.query.onlineStatus = "";
this.query.type = "";
this.query.sn = "";
|
4c2fb560
梁保满
反馈新需求
|
1129
|
query.studentName = this.query.studentName;
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1130
|
} else {
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1131
1132
1133
1134
1135
1136
1137
|
if (this.type == 1) {
this.query.onlineStatus !== ""
? (query.onlineStatus = this.query.onlineStatus)
: "";
} else if (this.type == 2) {
this.query.type !== "" ? (query.type = this.query.type) : "";
}
|
1b9bae95
梁保满
级联选择器调整,日志接口调整
|
1138
1139
1140
|
if (this.role == "ROLE_JITUAN") {
query.regionIds = [];
query.schoolIds = [];
|
255e2506
梁保满
飞书bug及优化
|
1141
1142
|
query.gradeNames = [];
query.classIds = [];
|
1b9bae95
梁保满
级联选择器调整,日志接口调整
|
1143
1144
|
this.query.classId?.map((item) => {
if (item.length == 1) {
|
225a00b6
梁保满
飞书问题解决
|
1145
|
if (!query.regionIds.includes(item[0])) {
|
1b9bae95
梁保满
级联选择器调整,日志接口调整
|
1146
1147
|
query.regionIds.push(item[0]);
}
|
255e2506
梁保满
飞书bug及优化
|
1148
|
} else if (item.length == 2) {
|
1b9bae95
梁保满
级联选择器调整,日志接口调整
|
1149
1150
1151
|
if (!query.schoolIds.includes(item[1])) {
query.schoolIds.push(item[1]);
}
|
255e2506
梁保满
飞书bug及优化
|
1152
1153
1154
1155
|
query.regionIds.includes(item[0])
? query.regionIds.remove(item[0])
: "";
} else if (item.length == 3) {
|
1365ef5e
梁保满
优化
|
1156
1157
1158
|
if (!query.schoolIds.includes(item[1])) {
query.schoolIds.push(item[1]);
}
|
255e2506
梁保满
飞书bug及优化
|
1159
1160
|
if (!query.gradeNames.includes(item[2])) {
query.gradeNames.push(item[2]);
|
1b9bae95
梁保满
级联选择器调整,日志接口调整
|
1161
|
}
|
255e2506
梁保满
飞书bug及优化
|
1162
1163
1164
|
query.regionIds.includes(item[0])
? query.regionIds.remove(item[0])
: "";
|
255e2506
梁保满
飞书bug及优化
|
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
|
} else if (item.length == 4) {
if (!query.classIds.includes(item[3])) {
query.classIds.push(item[3]);
}
query.regionIds.includes(item[0])
? query.regionIds.remove(item[0])
: "";
query.schoolIds.includes(item[1])
? query.schoolIds.remove(item[1])
: "";
query.gradeNames.includes(item[2])
? query.gradeNames.remove(item[2])
: "";
|
1b9bae95
梁保满
级联选择器调整,日志接口调整
|
1178
1179
1180
1181
1182
1183
1184
|
}
});
} else {
query.gradeNames = [];
query.classIds = [];
this.query.classId?.map((item) => {
if (item.length == 1) {
|
225a00b6
梁保满
飞书问题解决
|
1185
|
if (!query.gradeNames.includes(item[0])) {
|
1b9bae95
梁保满
级联选择器调整,日志接口调整
|
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
|
query.gradeNames.push(item[0]);
}
} else {
if (!query.classIds.includes(item[1])) {
query.classIds.push(item[1]);
}
if (query.gradeNames.includes(item[0])) {
query.gradeNames.remove(item[0]);
}
}
});
}
delete query.classId;
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1199
|
}
|
225a00b6
梁保满
飞书问题解决
|
1200
|
return query;
|
1b9bae95
梁保满
级联选择器调整,日志接口调整
|
1201
1202
1203
|
},
// 设备列表信息
async _QueryData(isRef) {
|
225a00b6
梁保满
飞书问题解决
|
1204
|
let query = this.setQuery();
|
1b9bae95
梁保满
级联选择器调整,日志接口调整
|
1205
1206
|
if (isRef) {
this.page = 1;
|
b21d90ef
梁保满
长水登录
|
1207
|
}
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1208
|
this.loading = true;
|
e5ff81a1
阿宝
集团管理员接口
|
1209
1210
1211
1212
|
const deviceList =
this.role != "ROLE_JITUAN"
? this.$request.deviceList
: this.$request.tenantDeviceList;
|
6d7bd862
梁保满
飞书bug
|
1213
|
this.tableData = [];
|
e5ff81a1
阿宝
集团管理员接口
|
1214
|
const { data, status, info } = await deviceList({
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1215
1216
1217
1218
1219
1220
|
...query,
deviceType: this.type,
page: this.page,
size: this.size,
});
this.loading = false;
|
e5ff81a1
阿宝
集团管理员接口
|
1221
|
if (status == 0) {
|
225a00b6
梁保满
飞书问题解决
|
1222
|
this.tableData =
|
255e2506
梁保满
飞书bug及优化
|
1223
1224
1225
1226
1227
1228
|
(data?.list &&
data?.list.map((item) => {
item.upgradeFlag = item.upgradeFlag == 1 ? true : false;
return item;
})) ||
[];
|
0e46bc25
梁保满
优化
|
1229
|
|
225a00b6
梁保满
飞书问题解决
|
1230
|
this.total = data.count;
|
e3b0e3e7
梁保满
季度时间格式调整
|
1231
1232
|
this.$nextTick(function () {
this.$refs.main.scrollTop = 0;
|
0e46bc25
梁保满
优化
|
1233
1234
1235
1236
1237
1238
|
if (this.query.classId.length) {
this.selectionTabIds = this.tableData.map((item) => {
this.$refs.multipleTable.toggleRowSelection(item);
return item.id;
});
}
|
e3b0e3e7
梁保满
季度时间格式调整
|
1239
|
});
|
23a6dc5f
阿宝
学校管理相关接口简单对接
|
1240
1241
1242
|
} else {
this.$message.error(info);
}
|
db11048f
阿宝
设备状态,学校管理
|
1243
1244
1245
|
},
},
};
|
4c4f7640
梁保满
路由表,路由前端文件
|
1246
1247
|
</script>
|
db11048f
阿宝
设备状态,学校管理
|
1248
1249
|
<style lang="scss" scoped>
.page-content {
|
1365ef5e
梁保满
优化
|
1250
1251
1252
|
padding: 0 20px;
height: 100%;
overflow-y: auto;
|
db11048f
阿宝
设备状态,学校管理
|
1253
1254
|
}
.tab-box {
|
e3b0e3e7
梁保满
季度时间格式调整
|
1255
|
padding: 20px 0 12px;
|
db11048f
阿宝
设备状态,学校管理
|
1256
|
}
|
ae0a304c
梁保满
学生管理-显示班级基站信息
|
1257
|
.down {
|
e5e4a3e6
梁保满
v1.3
|
1258
|
padding: 0 0 16px 20px;
|
ae0a304c
梁保满
学生管理-显示班级基站信息
|
1259
|
}
|
db11048f
阿宝
设备状态,学校管理
|
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
|
.content {
background: #f8f8f8;
border: 1px solid #e2e2e2;
border-radius: 10px;
overflow: hidden;
:deep(.fa-edit) {
width: 12px;
height: 12px;
&::before {
margin-left: 2px;
}
}
:deep(.fa-eye) {
width: 12px;
height: 12px;
&::before {
margin-left: 1px;
}
}
.chart-box {
display: flex;
overflow: hidden;
height: 240px;
border-bottom: 0.5px solid #e2e2e2;
.device-num {
width: 280px;
border-right: 0.5px solid #e2e2e2;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.p1 {
font-size: 28px;
}
}
.chart {
flex: 1;
height: 100%;
}
}
.table-box {
|
e5e4a3e6
梁保满
v1.3
|
1301
|
padding: 20px 20px 0;
|
47a01cb6
梁保满
v1.3测试问题
|
1302
1303
1304
1305
1306
1307
|
.loading {
text-align: center;
line-height: 36px;
font-size: 16px;
color: #666;
}
|
db11048f
阿宝
设备状态,学校管理
|
1308
1309
1310
|
.answer-header {
padding: 0;
margin-bottom: 12px;
|
ec6394d1
梁保满
v1.3.1。细节调整
|
1311
1312
1313
1314
|
.upgrade-all{
display: flex;
align-items: center;
}
|
db11048f
阿宝
设备状态,学校管理
|
1315
1316
1317
|
}
}
}
|
4c2fb560
梁保满
反馈新需求
|
1318
1319
1320
1321
1322
1323
1324
1325
1326
|
.answer-header .sel-box .input-with-select {
margin-right: 20px;
:deep(.el-input__suffix) {
right: -5px;
}
:deep(.el-button) {
padding: 12px 16px 12px 10px;
}
}
|
4c4f7640
梁保满
路由表,路由前端文件
|
1327
|
</style>
|