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/.gitattributes +2 -0
- package/.github/workflows/npm-publish.yml +24 -0
- package/LICENSE +210 -0
- package/README.md +16 -0
- package/class_info_maintainance.html +187 -0
- package/class_teaching_monitor.html +219 -0
- package/cnoctave-student-learn-management-system.js +1 -0
- package/course_info_maintainance.html +185 -0
- package/courseware_management.html +187 -0
- package/discipline_info_maintainance.html +183 -0
- package/docs/1.png +0 -0
- package/docs/10.png +0 -0
- package/docs/11.png +0 -0
- package/docs/12.png +0 -0
- package/docs/13.png +0 -0
- package/docs/2.png +0 -0
- package/docs/3.png +0 -0
- package/docs/4.png +0 -0
- package/docs/5.png +0 -0
- package/docs/6.png +0 -0
- package/docs/7.png +0 -0
- package/docs/8.png +0 -0
- package/docs/9.png +0 -0
- package/docs/banner0.png +0 -0
- package/docs/favicon.ico +0 -0
- package/docs/index.html +264 -0
- package/docs/main.css +304 -0
- package/docs/translate_dropdown.png +0 -0
- package/docs/translate_dropdown_code.png +0 -0
- package/index.html +338 -0
- package/package.json +31 -0
- package/student_evaluation.html +188 -0
- package/student_info_maintainance.html +188 -0
- package/student_info_query.html +217 -0
- package/student_score_info_maintainance.html +186 -0
- package/student_score_info_query.html +246 -0
- package/teach_year_info_maintainance.html +185 -0
- package/teacher_info_maintainance.html +188 -0
|
@@ -0,0 +1,188 @@
|
|
|
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
|
+
<q-input filled v-model="search" label="搜索教师姓名/工号/教师证号/入职年份/离职年份/专业" class="q-mb-md">
|
|
142
|
+
<template v-slot:prepend>
|
|
143
|
+
<q-btn color="primary" icon-right="search" label="搜索"></q-btn>
|
|
144
|
+
</template>
|
|
145
|
+
</q-input>
|
|
146
|
+
<q-table :rows="teachers" :columns="columns" row-key="id">
|
|
147
|
+
<template v-slot:top>
|
|
148
|
+
<q-btn color="primary" icon-right="add" label="增加教师信息"></q-btn>
|
|
149
|
+
</template>
|
|
150
|
+
</q-table>
|
|
151
|
+
|
|
152
|
+
</q-layout>
|
|
153
|
+
</div>
|
|
154
|
+
<script src="https://cdn.jsdelivr.net/npm/vue@3/dist/vue.global.prod.js"></script>
|
|
155
|
+
<script src="https://cdn.jsdelivr.net/npm/quasar@2.17.0/dist/quasar.umd.prod.js"></script>
|
|
156
|
+
<script>
|
|
157
|
+
const App = {
|
|
158
|
+
data() {
|
|
159
|
+
return {
|
|
160
|
+
goTo(target) {
|
|
161
|
+
window.open(target, '_blank');
|
|
162
|
+
},
|
|
163
|
+
teachers: [
|
|
164
|
+
{ id: 1, name: '张三', employeeId: 'T001', teacherId: 'T001-01', hireYear: 2015, fireYear: 2026, major: '计算机科学' },
|
|
165
|
+
{ id: 2, name: '李四', employeeId: 'T002', teacherId: 'T002-01', hireYear: 2016, fireYear: null, major: '数学' },
|
|
166
|
+
{ id: 3, name: '王五', employeeId: 'T003', teacherId: 'T003-01', hireYear: 2017, fireYear: null, major: '物理学' },
|
|
167
|
+
],
|
|
168
|
+
columns: [
|
|
169
|
+
{ name: 'name', label: '姓名', field: 'name', align: 'left' },
|
|
170
|
+
{ name: 'employeeId', label: '工号', field: 'employeeId', align: 'left' },
|
|
171
|
+
{ name: 'teacherId', label: '教师证号', field: 'teacherId', align: 'left' },
|
|
172
|
+
{ name: 'hireYear', label: '入职年份', field: 'hireYear', align: 'left' },
|
|
173
|
+
{ name: 'fireYear', label: '离职年份', field: 'fireYear', align: 'left' },
|
|
174
|
+
{ name: 'major', label: '专业', field: 'major', align: 'left' },
|
|
175
|
+
],
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
mounted() {
|
|
179
|
+
},
|
|
180
|
+
};
|
|
181
|
+
const app = Vue.createApp(App);
|
|
182
|
+
app.use(Quasar)
|
|
183
|
+
app.mount('#q-app')
|
|
184
|
+
</script>
|
|
185
|
+
|
|
186
|
+
</body>
|
|
187
|
+
|
|
188
|
+
</html>
|