diff --git a/src/api/index1.js b/src/api/index1.js index e21c301b..abe4699f 100644 --- a/src/api/index1.js +++ b/src/api/index1.js @@ -70,6 +70,9 @@ export const getRouterDetail = (routerId) => http.get('/admin/router/detail', { }); //添加学员 export const addStudent = (obj) => http.post('/admin/router/addStudent', obj); +//删除学员 +export const delStudent = (obj) => http.post('/admin/router/deleteStudent', obj); + //项目基础信息----------------------------------- diff --git a/src/api/indexProjStu.js b/src/api/indexProjStu.js index 28d77063..392664b7 100644 --- a/src/api/indexProjStu.js +++ b/src/api/indexProjStu.js @@ -19,4 +19,7 @@ export const editGroup = (obj) => http.post('/admin/project/editGroup', obj) export const studentProcess = (obj) => http.get('/admin/project/studentProcess', { params: obj }) //是否优秀学员 -export const topStudent = (obj) => http.post('/admin/project/topStudent', obj) \ No newline at end of file +export const topStudent = (obj) => http.post('/admin/project/topStudent', obj) + +//项目概览 +export const overview = (obj) => http.get('/admin/project/overview', { params: obj }) \ No newline at end of file diff --git a/src/components/drawers/ManageRight.vue b/src/components/drawers/ManageRight.vue index 65bdbfc9..438af6a0 100644 --- a/src/components/drawers/ManageRight.vue +++ b/src/components/drawers/ManageRight.vue @@ -4,10 +4,10 @@ :visible="Managevisible" class="drawerStyle ManageRight" placement="right" - width="60%" + width="85%" @after-visible-change="afterVisibleChange" > -
-
+
+
+
-
-
+
+
+
+
-
-
+
+
+
+
+
+
- {{item.name}}
+ {{item.name}}
删除