cnoctave-student-learn-management-system 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/docs/main.css ADDED
@@ -0,0 +1,304 @@
1
+ body {
2
+ border-top: 0px;
3
+ }
4
+
5
+ .container {
6
+ display: flex;
7
+ justify-content: space-between;
8
+ padding: 20px;
9
+ }
10
+
11
+ .main {
12
+ flex: 10;
13
+ margin: 0 20px;
14
+ }
15
+
16
+ .title1 {
17
+ font-size: 30px;
18
+ }
19
+
20
+ .bookpic {
21
+ height: 300px;
22
+ }
23
+
24
+ .card:hover {
25
+ color: rgb(0, 132, 255);
26
+ cursor: pointer;
27
+ }
28
+
29
+ .rainbow-text {
30
+ display: inline-block;
31
+ background-image: -webkit-linear-gradient(90deg, red, orange, yellow, red, orange);
32
+ -webkit-background-clip: text;
33
+ color: transparent;
34
+ font-size: 50px;
35
+ }
36
+
37
+ .ad-banner {
38
+ width: 100%;
39
+ height: 200px;
40
+ background-color: gray;
41
+ color: white;
42
+ text-align: center;
43
+ }
44
+
45
+ .ad-side {
46
+ /* width: 10%; */
47
+ height: 600px;
48
+ background-color: gray;
49
+ color: white;
50
+ text-align: center;
51
+ flex: 1;
52
+ }
53
+
54
+ .custom-caption {
55
+ text-align: center;
56
+ padding: 50px;
57
+ color: white;
58
+ background-color: rgba(0, 0, 0, .3);
59
+ }
60
+
61
+ .combined-color-1 {
62
+ background: radial-gradient(ellipse at top, #e66465, transparent),
63
+ radial-gradient(ellipse at bottom, #4d9f0c, transparent),
64
+ radial-gradient(ellipse at left, #0fce65, transparent),
65
+ radial-gradient(ellipse at right, #f3c809, transparent);
66
+ }
67
+
68
+ .combined-color-2 {
69
+ background: radial-gradient(ellipse at top, #a3e664, transparent),
70
+ radial-gradient(ellipse at bottom, #0c9f6e, transparent),
71
+ radial-gradient(ellipse at left, #0f92ce, transparent),
72
+ radial-gradient(ellipse at right, #f309c0, transparent);
73
+ }
74
+
75
+ .combined-color-3 {
76
+ background: radial-gradient(ellipse at top, #64d7e6, transparent),
77
+ radial-gradient(ellipse at bottom, #9f780c, transparent),
78
+ radial-gradient(ellipse at left, #b80fce, transparent),
79
+ radial-gradient(ellipse at right, #09f328, transparent);
80
+ }
81
+
82
+ .combined-color-4 {
83
+ background: radial-gradient(ellipse at top, #64e6db, transparent),
84
+ radial-gradient(ellipse at bottom, #ecdd07, transparent),
85
+ radial-gradient(ellipse at left, #ce2c0f, transparent),
86
+ radial-gradient(ellipse at right, #9509f3, transparent);
87
+ }
88
+
89
+ .combined-color-5 {
90
+ background: radial-gradient(ellipse at top, #e67864, transparent),
91
+ radial-gradient(ellipse at bottom, #3cec07, transparent),
92
+ radial-gradient(ellipse at left, #0f32ce, transparent),
93
+ radial-gradient(ellipse at right, #f30957, transparent);
94
+ }
95
+
96
+ .combined-color-6 {
97
+ background: radial-gradient(ellipse at top, #c42bd8, transparent),
98
+ radial-gradient(ellipse at bottom, #ec6e07, transparent),
99
+ radial-gradient(ellipse at left, #4cce0f, transparent),
100
+ radial-gradient(ellipse at right, #0995f3, transparent);
101
+ }
102
+
103
+ .combined-color-7 {
104
+ background: radial-gradient(ellipse at top, #d82b2b, transparent),
105
+ radial-gradient(ellipse at bottom, #ddec07, transparent),
106
+ radial-gradient(ellipse at left, #0fcece, transparent),
107
+ radial-gradient(ellipse at right, #2009f3, transparent);
108
+ }
109
+
110
+ .combined-color-8 {
111
+ background: radial-gradient(ellipse at top, #2bd85f, transparent),
112
+ radial-gradient(ellipse at bottom, #4c07ec, transparent),
113
+ radial-gradient(ellipse at left, #1fce0f, transparent),
114
+ radial-gradient(ellipse at right, #f30999, transparent);
115
+ }
116
+
117
+ .combined-color-9 {
118
+ background: radial-gradient(ellipse at top, #2bbed8, transparent),
119
+ radial-gradient(ellipse at bottom, #ec4807, transparent),
120
+ radial-gradient(ellipse at left, #ce0fa5, transparent),
121
+ radial-gradient(ellipse at right, #86f309, transparent);
122
+ }
123
+
124
+ .combined-color-10 {
125
+ background: radial-gradient(ellipse at top, #d82bca, transparent),
126
+ radial-gradient(ellipse at bottom, #94ec07, transparent),
127
+ radial-gradient(ellipse at left, #0fb8ce, transparent),
128
+ radial-gradient(ellipse at right, #dcf309, transparent);
129
+ }
130
+
131
+ .carousel {
132
+ display: flex;
133
+ overflow: hidden;
134
+ width: 100%;
135
+ height: 300px;
136
+ }
137
+
138
+ .carousel-track {
139
+ display: flex;
140
+ transition: transform 0.5s ease;
141
+ }
142
+
143
+ .person {
144
+ max-width: 100%;
145
+ width: 300px;
146
+ height: 400px;
147
+ display: flex;
148
+ justify-content: center;
149
+ align-items: center;
150
+ }
151
+
152
+ .person-outline {
153
+ width: 340px;
154
+ height: 500px;
155
+ }
156
+
157
+ /* .person img {
158
+ max-height: 100%;
159
+ max-width: 80%;
160
+ } */
161
+
162
+
163
+ @media (max-width: 1080px) {
164
+ .rainbow-text {
165
+ font-size: 30px;
166
+ }
167
+ }
168
+
169
+ .flexcards-container {
170
+ display: flex;
171
+ flex-wrap: wrap;
172
+ }
173
+
174
+ .flexcards-item {
175
+ flex: 1 0 100%;
176
+ text-align: center;
177
+ padding: 10px;
178
+ box-sizing: border-box;
179
+ margin: 16px 0px;
180
+ }
181
+
182
+ @media (min-width: 1080px) {
183
+ .flexcards-item {
184
+ flex-basis: calc((100% - 96px) / 3);
185
+ max-width: calc((100% - 96px) / 3);
186
+ margin: 16px;
187
+ }
188
+ }
189
+
190
+ @keyframes flame-animation {
191
+ 0% {
192
+ box-shadow: 0 0 1px 1px rgba(255, 165, 0, 0.5),
193
+ 0 0 2px 2px rgba(255, 165, 0, 0.4),
194
+ 0 0 30px 3px rgba(255, 165, 0, 0.3),
195
+ 0 0 4px 4px rgba(255, 165, 0, 0.2),
196
+ 0 0 5px 5px rgba(255, 165, 0, 0.1);
197
+ }
198
+ 50% {
199
+ box-shadow: 0 0 6px 6px rgba(255, 165, 0, 0.5),
200
+ 0 0 6px 6px rgba(255, 165, 0, 0.4),
201
+ 0 0 6px 6px rgba(255, 165, 0, 0.3),
202
+ 0 0 6px 6px rgba(255, 165, 0, 0.2),
203
+ 0 0 6px 6px rgba(255, 165, 0, 0.1);
204
+ }
205
+ 100% {
206
+ box-shadow: 0 0 1px 1px rgba(255, 165, 0, 0.5),
207
+ 0 0 2px 2px rgba(255, 165, 0, 0.4),
208
+ 0 0 3px 3px rgba(255, 165, 0, 0.3),
209
+ 0 0 4px 4px rgba(255, 165, 0, 0.2),
210
+ 0 0 5px 5px rgba(255, 165, 0, 0.1);
211
+ }
212
+ }
213
+
214
+ .flame-border {
215
+ position: relative;
216
+ display: inline-block;
217
+ animation: flame-animation 2s infinite;
218
+ }
219
+
220
+ .flame-border::before {
221
+ content: '';
222
+ position: absolute;
223
+ top: 0;
224
+ left: 0;
225
+ right: 0;
226
+ bottom: 0;
227
+ border: 2px solid rgba(255, 165, 0, 0.5);
228
+ border-radius: 10px; /* 根据需要调整圆角大小 */
229
+ box-shadow: 0 0 10px 10px rgba(255, 165, 0, 0.5),
230
+ 0 0 20px 20px rgba(255, 165, 0, 0.4),
231
+ 0 0 30px 30px rgba(255, 165, 0, 0.3),
232
+ 0 0 40px 40px rgba(255, 165, 0, 0.2),
233
+ 0 0 50px 50px rgba(255, 165, 0, 0.1);
234
+ pointer-events: none; /* 确保边框不会影响鼠标事件 */
235
+ }
236
+ #loading {
237
+ position: fixed;
238
+ top: 0;
239
+ left: 0;
240
+ width: 100%;
241
+ height: 100%;
242
+ background: #fff;
243
+ display: flex;
244
+ justify-content: center;
245
+ align-items: center;
246
+ z-index: 9999;
247
+ }
248
+ #loading-text {
249
+ font-size: 2em;
250
+ color: #333;
251
+ }
252
+
253
+ .big-button {
254
+ border: 1px grey solid;
255
+ border-radius: 5px;
256
+ display: flex;
257
+ align-content: center;
258
+ justify-content: center;
259
+ align-items: center;
260
+ }
261
+
262
+ .bd-outline {
263
+ position: relative;
264
+ border: 1px grey solid;
265
+ border-radius: 5px;
266
+ }
267
+
268
+ .bd-corner {
269
+ position: absolute;
270
+ left: 0%;
271
+ bottom: 0%;
272
+ font-size: 1em;
273
+ color: white;
274
+ background-color: rgba(128, 128, 128, 0.7);
275
+ z-index: 100;
276
+ border-radius: 2px;
277
+ cursor: pointer;
278
+ }
279
+
280
+ .qrcode {
281
+ max-width: 100%;
282
+ width: 300px;
283
+ height: 300px;
284
+ display: flex;
285
+ justify-content: center;
286
+ align-items: center;
287
+ }
288
+
289
+ a {
290
+ color: inherit;
291
+ text-decoration: none;
292
+ }
293
+
294
+ a:visited {
295
+ color: inherit;
296
+ }
297
+
298
+ a:hover {
299
+ text-decoration: none;
300
+ }
301
+
302
+ a:active {
303
+ color: inherit;
304
+ }
Binary file
Binary file
package/index.html ADDED
@@ -0,0 +1,338 @@
1
+ <!doctype html>
2
+ <html lang="zh-CN">
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <meta name="format-detection" content="telephone=no">
7
+ <meta name="msapplication-tap-highlight" content="no">
8
+ <meta name="viewport" content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width">
9
+ <meta name="theme-color" content="#00B4FF">
10
+ <meta name="mobile-web-app-capable" content="yes">
11
+ <meta name="apple-mobile-web-app-status-bar-style" content="default">
12
+ <meta name="msapplication-TileImage" content="/favicon.ico">
13
+ <meta name="msapplication-TileColor" content="#000000">
14
+ <meta name="apple-mobile-web-app-title" content="Octave中文网">
15
+ <link href="https://fonts.googleapis.com/css?family=Material+Icons" rel="stylesheet" type="text/css">
16
+ <link href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" rel="stylesheet" type="text/css">
17
+ <link href="https://use.fontawesome.com/releases/v6.1.1/css/all.css" rel="stylesheet" type="text/css">
18
+ <link href="https://cdn.jsdelivr.net/npm/animate.css@^4.0.0/animate.min.css" rel="stylesheet" type="text/css">
19
+ <link href="https://cdn.jsdelivr.net/npm/quasar@2.17.0/dist/quasar.prod.css" rel="stylesheet" type="text/css">
20
+ <link href="assets/main.css" rel="stylesheet" type="text/css">
21
+ <title>Octave中文网学生学习管理系统</title>
22
+ <link rel="icon" href="/favicon.ico" type="image/x-icon">
23
+ <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
24
+ <meta name="title" content="Octave中文网" data-qmeta="title">
25
+ <meta property="og:title" content="Octave中文网" data-qmeta="ogTitle">
26
+ <meta name="twitter:title" content="Octave中文网" data-qmeta="twitterTitle">
27
+ <meta name="description" content="Octave中文网是一个面向中文Octave开发者的交流平台,拥有中文Octave文档、中文Octave论坛和中文Octave新闻等特色。"
28
+ data-qmeta="description">
29
+ <meta property="og:description" content="Octave中文网是一个面向中文Octave开发者的交流平台,拥有中文Octave文档、中文Octave论坛和中文Octave新闻等特色。"
30
+ data-qmeta="ogDesc">
31
+ <meta name="twitter:description" content="Octave中文网是一个面向中文Octave开发者的交流平台,拥有中文Octave文档、中文Octave论坛和中文Octave新闻等特色。"
32
+ data-qmeta="twitterDesc">
33
+ </head>
34
+
35
+ <body>
36
+ <div id="q-app">
37
+ <q-layout view="hHh LpR fFf">
38
+ <q-toolbar class="bg-primary text-white q-ny-md shadow-2">
39
+ <q-btn stretch flat label="Octave中文网" @click="goTo('http://cnoctave.top')">
40
+ <a href='http://cnoctave.top' target="_blank"></a>
41
+ </q-btn>
42
+ <q-separator dark vertical></q-separator>
43
+ <q-btn-dropdown stretch flat icon="visibility" label="学生学习画像">
44
+ <q-list>
45
+ <q-item clickable v-close-popup @click="goTo('index.html')">
46
+ <q-item-section>
47
+ <q-item-label>学生学习画像</q-item-label>
48
+ </q-item-section>
49
+ </q-item>
50
+ <q-item clickable v-close-popup @click="goTo('student_info_query.html')">
51
+ <q-item-section>
52
+ <q-item-label>学生信息查询</q-item-label>
53
+ </q-item-section>
54
+ </q-item>
55
+ <q-item clickable v-close-popup @click="goTo('student_score_info_query.html')">
56
+ <q-item-section>
57
+ <q-item-label>学生成绩信息查询</q-item-label>
58
+ </q-item-section>
59
+ </q-item>
60
+ <q-item clickable v-close-popup @click="goTo('class_teaching_monitor.html')">
61
+ <q-item-section>
62
+ <q-item-label>课堂教学监测</q-item-label>
63
+ </q-item-section>
64
+ </q-item>
65
+ <q-item clickable v-close-popup @click="goTo('student_evaluation.html')">
66
+ <q-item-section>
67
+ <q-item-label>学生评价</q-item-label>
68
+ </q-item-section>
69
+ </q-item>
70
+ <q-item clickable v-close-popup @click="goTo('courseware_management.html')">
71
+ <q-item-section>
72
+ <q-item-label>课件管理</q-item-label>
73
+ </q-item-section>
74
+ </q-item>
75
+ </q-list>
76
+ </q-btn-dropdown>
77
+ <q-separator dark vertical></q-separator>
78
+ <q-btn-dropdown stretch flat icon="edit" label="系统管理">
79
+ <q-list>
80
+ <q-item clickable v-close-popup @click="goTo('student_info_maintainance.html')">
81
+ <q-item-section>
82
+ <q-item-label>学生信息维护</q-item-label>
83
+ </q-item-section>
84
+ </q-item>
85
+ <q-item clickable v-close-popup @click="goTo('student_score_info_maintainance.html')">
86
+ <q-item-section>
87
+ <q-item-label>学生成绩信息维护</q-item-label>
88
+ </q-item-section>
89
+ </q-item>
90
+ <q-item clickable v-close-popup @click="goTo('teacher_info_maintainance.html')">
91
+ <q-item-section>
92
+ <q-item-label>教师信息维护</q-item-label>
93
+ </q-item-section>
94
+ </q-item>
95
+ <q-item clickable v-close-popup @click="goTo('teach_year_info_maintainance.html')">
96
+ <q-item-section>
97
+ <q-item-label>学期信息维护</q-item-label>
98
+ </q-item-section>
99
+ </q-item>
100
+ <q-item clickable v-close-popup @click="goTo('discipline_info_maintainance.html')">
101
+ <q-item-section>
102
+ <q-item-label>学科信息维护</q-item-label>
103
+ </q-item-section>
104
+ </q-item>
105
+ <q-item clickable v-close-popup @click="goTo('class_info_maintainance.html')">
106
+ <q-item-section>
107
+ <q-item-label>班级信息维护</q-item-label>
108
+ </q-item-section>
109
+ </q-item>
110
+ <q-item clickable v-close-popup @click="goTo('course_info_maintainance.html')">
111
+ <q-item-section>
112
+ <q-item-label>课程信息维护</q-item-label>
113
+ </q-item-section>
114
+ </q-item>
115
+ </q-list>
116
+ </q-btn-dropdown>
117
+ <q-separator dark vertical></q-separator>
118
+ <q-space></q-space>
119
+ <q-separator dark vertical></q-separator>
120
+ <q-btn stretch flat label="中文版Octave文档" @click="goTo('http://docs.cnoctave.top')">
121
+ <a href='http://docs.cnoctave.top' target="_blank"></a>
122
+ </q-btn>
123
+ <q-separator dark vertical></q-separator>
124
+ <q-btn stretch flat label="学术交流论坛" @click="goTo('http://forum.cnoctave.top')">
125
+ <a href='http://forum.cnoctave.top' target="_blank"></a>
126
+ </q-btn>
127
+ <q-separator dark vertical></q-separator>
128
+ <q-btn stretch flat label="新闻" @click="goTo('https://octave.org/news.html')">
129
+ <a href='https://octave.org/news.html' target="_blank"></a>
130
+ </q-btn>
131
+ <q-separator dark vertical></q-separator>
132
+ <q-btn stretch flat label="使用方法" @click="goTo('https://wiki.octave.org/Using_Octave')">
133
+ <a href='https://wiki.octave.org/Using_Octave' target="_blank"></a>
134
+ </q-btn>
135
+ <q-separator dark vertical></q-separator>
136
+ <q-btn stretch flat label="免费下载" @click="goTo('https://octave.org/download')">
137
+ <a href='https://octave.org/download' target="_blank"></a>
138
+ </q-btn>
139
+ </q-toolbar>
140
+ <h1>学生学习画像</h1>
141
+ <div class="row">
142
+ <div class="col q-pa-sm">
143
+ <q-input filled v-model="studentName" label="学生姓名" class="q-mb-md"></q-input>
144
+ </div>
145
+ <div class="col q-pa-sm">
146
+ <q-input filled v-model="studentId" label="学号" class="q-mb-md"></q-input>
147
+ </div>
148
+ <div class="col q-pa-sm">
149
+ <q-input filled v-model="enrollmentYear" label="入学年份" class="q-mb-md"></q-input>
150
+ </div>
151
+ </div>
152
+ <div class="row">
153
+ <div class="col q-pa-sm">
154
+ <q-input filled v-model="graduationYear" label="毕业年份" class="q-mb-md"></q-input>
155
+ </div>
156
+ <div class="col q-pa-sm">
157
+ <q-input filled v-model="major" label="专业" class="q-mb-md"></q-input>
158
+ </div>
159
+ <div class="col q-pa-sm">
160
+ <q-input filled v-model="class_" label="班级" class="q-mb-md"></q-input>
161
+ </div>
162
+ </div>
163
+ <div class="row">
164
+ <div class="col q-pa-sm">
165
+ <q-input filled v-model="semester" label="学期" class="q-mb-md"></q-input>
166
+ </div>
167
+ <div class="col q-pa-sm">
168
+ <q-input filled v-model="courseName" label="课程名称" class="q-mb-md"></q-input>
169
+ </div>
170
+ <div class="col q-pa-sm">
171
+ </div>
172
+ </div>
173
+ <div class="row">
174
+ <div class="col q-pa-sm">
175
+ <q-btn color="primary" icon-right="search" label="搜索"></q-btn>
176
+ </div>
177
+ <div class="col q-pa-sm">
178
+ </div>
179
+ <div class="col q-pa-sm">
180
+ </div>
181
+ </div>
182
+ <div class="row">
183
+ <div class="col-12 col-md-1 q-pa-sm">
184
+ <q-img src="http://www.cnoctave.top/pic/yuhongbo.jpg" spinner-color="white">
185
+ </q-img>
186
+ </div>
187
+ <div class="col-12 col-md-2 q-pa-sm">
188
+ <h3>学生信息详情</h3>
189
+ <p><strong>学生姓名:</strong> {{ studentName }}</p>
190
+ <p><strong>学号:</strong> {{ studentId }}</p>
191
+ <p><strong>入学年份:</strong> {{ enrollmentYear }}</p>
192
+ <p><strong>毕业年份:</strong> {{ graduationYear }}</p>
193
+ <p><strong>专业:</strong> {{ major }}</p>
194
+ <p><strong>班级:</strong> {{ class_ }}</p>
195
+ </div>
196
+ <div class="col-12 col-md-3 q-pa-sm">
197
+ <div id="chart1" style="width: 100%;height:400px;"></div>
198
+ </div>
199
+ <div class="col-12 col-md-3 q-pa-sm">
200
+ <div id="chart2" style="width: 100%;height:400px;"></div>
201
+ </div>
202
+ <div class="col-12 col-md-3 q-pa-sm">
203
+ <div id="chart3" style="width: 100%;height:400px;"></div>
204
+ </div>
205
+ </div>
206
+
207
+ </q-layout>
208
+ </div>
209
+ <script src="https://cdn.jsdelivr.net/npm/vue@3/dist/vue.global.prod.js"></script>
210
+ <script src="https://cdn.jsdelivr.net/npm/quasar@2.17.0/dist/quasar.umd.prod.js"></script>
211
+ <script src="https://cdn.jsdelivr.net/npm/echarts@6.0.0/dist/echarts.min.js"></script>
212
+ <script>
213
+ const App = {
214
+ data() {
215
+ return {
216
+ goTo(target) {
217
+ window.open(target, '_blank');
218
+ },
219
+ studentName: '张三',
220
+ studentId: '2021001',
221
+ enrollmentYear: 2021,
222
+ graduationYear: 2025,
223
+ major: '计算机科学与技术',
224
+ class_: '计算机科学与技术1班',
225
+ semester: '',
226
+ courseName: '',
227
+ scores: [
228
+ [95, 88, 92],
229
+ [10, 24, 15, 30, 27, 18],
230
+ [5, 4, 5],
231
+ ],
232
+ }
233
+ },
234
+ mounted() {
235
+ var myChart1 = globalThis.echarts.init(document.getElementById('chart1'));
236
+ var myChart2 = globalThis.echarts.init(document.getElementById('chart2'));
237
+ var myChart3 = globalThis.echarts.init(document.getElementById('chart3'));
238
+
239
+ var option1 = {
240
+ color: [
241
+ '#2f4554',
242
+ ],
243
+ title: {
244
+ text: '成绩画像'
245
+ },
246
+ tooltip: {},
247
+ legend: {
248
+ data: ['成绩画像打分']
249
+ },
250
+ xAxis: {
251
+ data: ['高等数学', '线性代数', '概率论与数理统计'],
252
+ axisLabel: {
253
+ rotate: 45,
254
+ interval: 0,
255
+ formatter: '{value}'
256
+ }
257
+ },
258
+ yAxis: {},
259
+ series: [
260
+ {
261
+ name: '成绩画像打分',
262
+ type: 'bar',
263
+ data: this.scores[0]
264
+ }
265
+ ]
266
+ };
267
+ var option2 = {
268
+ color: [
269
+ '#61a0a8',
270
+ ],
271
+ title: {
272
+ text: '课堂教学监测画像'
273
+ },
274
+ tooltip: {},
275
+ legend: {
276
+ data: ['课堂教学监测画像打分']
277
+ },
278
+ xAxis: {
279
+ data: ['102教室', '103教室', '202教室', '302教室', '402教室', '502教室'],
280
+ axisLabel: {
281
+ rotate: 45,
282
+ interval: 0,
283
+ formatter: '{value}'
284
+ }
285
+ },
286
+ yAxis: {},
287
+ series: [
288
+ {
289
+ name: '课堂教学监测画像打分',
290
+ type: 'bar',
291
+ data: this.scores[1]
292
+ }
293
+ ]
294
+ };
295
+ var option3 = {
296
+ color: [
297
+ '#d48265',
298
+ ],
299
+ title: {
300
+ text: '学生评价画像'
301
+ },
302
+ tooltip: {},
303
+ legend: {
304
+ data: ['学生评价打分']
305
+ },
306
+ xAxis: {
307
+ data: ['学生自评内容', '老师评价内容', '学生互相评价内容'],
308
+ axisLabel: {
309
+ rotate: 45,
310
+ interval: 0,
311
+ formatter: '{value}'
312
+ }
313
+ },
314
+ yAxis: {},
315
+ series: [
316
+ {
317
+ name: '学生评价打分',
318
+ type: 'bar',
319
+ data: this.scores[2]
320
+ }
321
+ ]
322
+ };
323
+
324
+ myChart1.setOption(option1);
325
+ myChart2.setOption(option2);
326
+ myChart3.setOption(option3);
327
+ },
328
+ };
329
+ const app = Vue.createApp(App);
330
+ app.use(Quasar)
331
+ app.mount('#q-app')
332
+ </script>
333
+ <script type="text/javascript">
334
+ </script>
335
+
336
+ </body>
337
+
338
+ </html>
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "cnoctave-student-learn-management-system",
3
+ "version": "1.0.0",
4
+ "description": "cnoctave-student-learn-management-system - open source AI student learn management system.",
5
+ "main": "cnoctave-student-learn-management-system.js",
6
+ "directories": {
7
+ "doc": "docs"
8
+ },
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/CNOCTAVE/cnoctave-student-learn-management-system.git"
15
+ },
16
+ "keywords": [
17
+ "AI",
18
+ "student",
19
+ "learn",
20
+ "management",
21
+ "system",
22
+ "CNOCTAVE",
23
+ "Yu Hongbo"
24
+ ],
25
+ "author": "CNOCTAVE, Yu Hongbo",
26
+ "license": "AGPL-3.0-only",
27
+ "bugs": {
28
+ "url": "https://github.com/CNOCTAVE/cnoctave-student-learn-management-system/issues"
29
+ },
30
+ "homepage": "https://github.com/CNOCTAVE/cnoctave-student-learn-management-system#readme"
31
+ }