From f33f2cd99aabc3b47c18713b5c8642890f7a2a06 Mon Sep 17 00:00:00 2001
From: yuping <82253452@qq.com>
Date: Thu, 22 Dec 2022 18:16:36 +0800
Subject: [PATCH] =?UTF-8?q?--=20=E6=89=B9=E9=87=8F=E8=B7=B3=E8=BD=AC?=
=?UTF-8?q?=E5=85=B3=E5=8D=A1?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/index1.js | 1 +
src/components/student/ChangeLevelModal.vue | 97 ++++++++++++---------
src/components/student/TableStudent.vue | 32 ++++++-
3 files changed, 88 insertions(+), 42 deletions(-)
diff --git a/src/api/index1.js b/src/api/index1.js
index 9b9ad512..c45056c3 100644
--- a/src/api/index1.js
+++ b/src/api/index1.js
@@ -132,6 +132,7 @@ export const addStudentCourse = (obj) => http.post("/admin/offcourse/addStudent"
// 获取组织结构树
export const orgtree = () => http.get("/org/tree");
export const saveStu = obj => http.post("/admin/student/addStudent", obj);
+export const moveStudent = obj => http.post("/admin/student/moveStudent", obj);
export const getStuPage = obj => http.get("/admin/student/getStudent", {params: obj});
export const delStudentList = obj => http.post("/admin/student/delStudent", obj);
export const validateName = obj => http.post("/admin/validate/validateName", obj);
diff --git a/src/components/student/ChangeLevelModal.vue b/src/components/student/ChangeLevelModal.vue
index 6fa93375..f2b428d6 100644
--- a/src/components/student/ChangeLevelModal.vue
+++ b/src/components/student/ChangeLevelModal.vue
@@ -8,12 +8,12 @@
-->
-
+
@@ -274,4 +279,27 @@ const showChangeModal = () => {
border-right: 1px solid #e9e9e9;
cursor: pointer;
}
+.cus-btn {
+ width: 100%;
+ height: 40px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin-right: 16px;
+ border: 1px solid #4ea6ff;
+ border-radius: 8px;
+ background: #4ea6ff;
+ cursor: pointer;
+ color: #fff;
+}
+
+.white {
+ background: #fff;
+ color: #4ea6ff;
+}
+
+.cus-input {
+ height: 40px;
+ border-radius: 8px;
+}
\ No newline at end of file