diff --git a/src/api/index.js b/src/api/index.js
index f3f684d2..733c29b2 100644
--- a/src/api/index.js
+++ b/src/api/index.js
@@ -80,3 +80,5 @@ export const getProjectCount = (projectId) => http.get('/admin/project/projectCo
export const login = (obj) => http.post('/admin/CheckUser/userLogin', obj)
export const userInfo = () => http.get('/admin/CheckUser/userInfo')
+//修改备注
+export const editStudent = (obj) => http.post('/admin/student/editStudent', obj)
\ No newline at end of file
diff --git a/src/components/NavLeft.vue b/src/components/NavLeft.vue
index 73f6be58..c9930ed9 100644
--- a/src/components/NavLeft.vue
+++ b/src/components/NavLeft.vue
@@ -573,7 +573,7 @@
员工学习数据
-
+
({}),
},
+ remarksTrue: {
+ type: Boolean,
+ default: false,
+ }
});
const { loading: stuAsyncLoading, start } = useAsyncStu(props.id, props.type, getStuList);
@@ -540,7 +544,7 @@ const tablecolumns = ref([
title: "操作",
dataIndex: "operation",
key: "operation",
- width: 210,
+ width: 260,
align: "center",
slots: { customRender: "action" },
},
diff --git a/src/utils/zipdownload.js b/src/utils/zipdownload.js
index d42e85c2..710a8c3d 100644
--- a/src/utils/zipdownload.js
+++ b/src/utils/zipdownload.js
@@ -18,6 +18,18 @@ export function downLoadZip(str, filename) {
resolveBlob(res, mimeMap.zip,filename)
})
}
+const baseUrlManage = process.env.VUE_APP_BASE_API
+export function downLoadZipManage(str, filename) {
+ var url = baseUrlManage + str
+ axios({
+ method: 'get',
+ url: url,
+ responseType: 'blob',
+ headers: { 'Authorization': 'Bearer ' + getCookieForName("token") }
+ }).then(res => {
+ resolveBlob(res, mimeMap.xlsx,filename)
+ })
+}
/**
* 解析blob响应内容并下载
* @param {*} res blob响应内容
diff --git a/src/views/projectcenter/TaskPage.vue b/src/views/projectcenter/TaskPage.vue
index a4c0ed38..4af15d2a 100644
--- a/src/views/projectcenter/TaskPage.vue
+++ b/src/views/projectcenter/TaskPage.vue
@@ -827,6 +827,7 @@
:stage="stage"
:visable="tabFlag"
:groupList="groupList"
+ :remarksTrue="remarksTrue"
>
换组
+ 修改备注
+
@@ -2347,6 +2353,43 @@
+
+
+
+