diff --git a/src/api/system/advice.js b/src/api/system/advice.js
new file mode 100644
index 0000000..02eb154
--- /dev/null
+++ b/src/api/system/advice.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询用户意见列表
+export function listAdvice(query) {
+ return request({
+ url: '/system/advice/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询用户意见详细
+export function getAdvice(id) {
+ return request({
+ url: '/system/advice/' + id,
+ method: 'get'
+ })
+}
+
+// 新增用户意见
+export function addAdvice(data) {
+ return request({
+ url: '/system/advice',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改用户意见
+export function updateAdvice(data) {
+ return request({
+ url: '/system/advice',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除用户意见
+export function delAdvice(id) {
+ return request({
+ url: '/system/advice/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/api/system/teacher.js b/src/api/system/teacher.js
new file mode 100644
index 0000000..d3b3cae
--- /dev/null
+++ b/src/api/system/teacher.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询教师管理列表
+export function listTeacher(query) {
+ return request({
+ url: '/system/teacher/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询教师管理详细
+export function getTeacher(id) {
+ return request({
+ url: '/system/teacher/' + id,
+ method: 'get'
+ })
+}
+
+// 新增教师管理
+export function addTeacher(data) {
+ return request({
+ url: '/system/teacher',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改教师管理
+export function updateTeacher(data) {
+ return request({
+ url: '/system/teacher',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除教师管理
+export function delTeacher(id) {
+ return request({
+ url: '/system/teacher/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/views/system/advice/index.vue b/src/views/system/advice/index.vue
new file mode 100644
index 0000000..d0ce7db
--- /dev/null
+++ b/src/views/system/advice/index.vue
@@ -0,0 +1,298 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.time, '{y}-{m}-{d}') }}
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/system/teacher/index.vue b/src/views/system/teacher/index.vue
new file mode 100644
index 0000000..87ce100
--- /dev/null
+++ b/src/views/system/teacher/index.vue
@@ -0,0 +1,283 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+