13b58a42
梁保满
备题组卷部分前端页面基本完成
|
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
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
184
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
|
let addrouters = [ //测试用,后续后端获取
{
path: "/examinationPaper",
iconCls: "fa fa-file-text", // 图标样式class
name: "备题组卷",
component: Layout,
alone: true,
children: [
{
path: "/examinationPaper",
iconCls: "fa fa-file-text", // 图标样式class
name: "",
component: ExaminationPaper,
children: []
},
{
path: "/examinationPaperAdd",
iconCls: "", // 图标样式class
name: "添加答题卡",
component: ExaminationPaperAdd,
children: []
},
{
path: "/examinationPaperEdit",
iconCls: "", // 图标样式class
name: "修改答题卡",
component: ExaminationPaperEdit,
children: []
},
{
path: "/examinationPaperRecycle",
iconCls: "", // 图标样式class
name: "已归档答题卡",
component: ExaminationPaperRecycle,
children: []
},
]
},
{
path: "/ask",
iconCls: "fa fa-bar-chart", // 图标样式class
name: "随堂问报表",
component: Layout,
alone: true,
children: [
{
path: "/ask",
iconCls: "fa fa-bar-chart", // 图标样式class
name: "",
component: Ask,
children: []
},
{
path: "/askAnalysis",
iconCls: "", // 图标样式class
name: "随堂问报表分析",
component: AskAnalysis,
children: []
}
]
},
{
path: "/test",
iconCls: "fa fa-pie-chart", // 图标样式class
name: "即时测报表",
component: Layout,
alone: true,
children: [
{
path: "/test",
iconCls: "fa fa-pie-chart", // 图标样式class
name: "",
component: Test,
children: []
},
{
path: "/testAnalysis",
iconCls: "", // 图标样式class
name: "即时测报表分析",
component: TestAnalysis,
children: []
}
]
},
{
path: "/portrait",
iconCls: "fa fa-users", // 图标样式class
name: "学生画像",
component: Layout,
alone: true,
children: [
{
path: "/portrait",
iconCls: "fa fa-users", // 图标样式class
name: "",
component: Portrait,
children: []
}
]
},
{
path: "/setUpConglomerate",
iconCls: "fa fa-building", // 图标样式class
name: "学校管理",
component: Layout,
alone: true,
children: [
{
path: "/setUpConglomerate",
iconCls: "fa fa-building",
name: '集团管理',
component: SetUpConglomerate,
children: []
},
]
},
{
path: "/setUpAccount",
iconCls: "fa fa-id-card-o", // 图标样式class
name: "账号管理",
component: Layout,
alone: true,
children: [
{
path: "/setUpAccount",
iconCls: "fa fa-id-card-o",
name: '',
component: SetUpAccount,
children: []
},
]
},
{
path: "/",
iconCls: "fa fa-cog",
name: '学校设置',
component: Layout,
children: [
{
path: "/setUpSchool",
iconCls: "fa fa-calculator",
name: '学校设置',
component: SetUpSchool,
children: []
},
{
path: "/setUpTeacher",
iconCls: "fa fa-male",
name: '教师管理',
component: SetUpTeacher,
children: []
},
{
path: "/setUpStudent",
iconCls: "fa fa-mortar-board",
name: '学生管理',
component: SetUpStudent,
children: []
},
]
},
{
path: "/card",
iconCls: "fa fa-id-card", // 图标样式class
name: "发卡记录",
component: Layout,
alone: true,
children: [
{
path: "/card",
iconCls: "fa fa-id-card", // 图标样式class
name: "",
component: Card,
children: []
}
]
},
{
path: "/device",
iconCls: "fa fa-dashboard", // 图标样式class
name: "设备状态",
component: Layout,
alone: true,
children: [
{
path: "/device",
iconCls: "fa fa-dashboard", // 图标样式class
name: "",
component: Device,
children: []
}
]
},
{
path: "/analysis",
iconCls: "fa fa-area-chart", // 图标样式class
name: "使用分析",
component: Layout,
alone: true,
children: [
{
path: "/analysis",
iconCls: "fa fa-area-chart", // 图标样式class
name: "",
component: Analysis,
children: []
}
]
},
{
path: "/down",
iconCls: "fa fa-download", // 图标样式class
name: "软件下载",
component: Layout,
alone: true,
children: [
{
path: "/down",
iconCls: "fa fa-download", // 图标样式class
name: "发卡软件",
component: Down,
children: []
},
{
path: "/downClient",
iconCls: "", // 图标样式class
name: "授课端软件",
component: DownClient,
children: []
}
]
},
{
path: "/dataSync",
iconCls: "fa fa-random", // 图标样式class
name: "数据同步",
component: Layout,
alone: true,
children: [
{
path: "/dataSync",
iconCls: "fa fa-random", // 图标样式class
name: "",
component: DataSync,
children: []
}
]
},
|