47 1 month ago
parent
commit
31f757a687

+ 1 - 1
src/views/system/graduateStudent/index.vue

@@ -505,7 +505,7 @@ const handleExport = async () => {
     // 发起导出
     exportLoading.value = true
     const data = await UserApi.exportGraduateList(queryParams)
-    download.excel(data, '用户数据.xls')
+    download.excel(data, '毕业生数据.xls')
   } catch {
   } finally {
     exportLoading.value = false

+ 1 - 1
src/views/system/studentAttendanceManage/studentFaceManage/StudentFaceImport.vue

@@ -238,6 +238,6 @@ const resetForm = async (): Promise<void> => {
 const importTemplate = async () => {
   const res = await UserApi.getAttendanceTemplate()
   console.log(res,'111');
-  download.excel(res, '用户导入模版.xls')
+  download.excel(res, '人脸信息导入模版.xls')
 }
 </script>

+ 1 - 1
src/views/system/studentSelf/index.vue

@@ -266,7 +266,7 @@ const fetchImageUrls = async () => {
 }
 
 .remark-content {
-  white-space: pre-wrap; /* 保持换行 */
+  white-space: pre-wrap;
   overflow-wrap: break-word; /* 自动断行 */
   margin-right: 5%;
   font-size: 13px; /* 根据需要设置字体大小 */

+ 1 - 1
src/views/system/workroomCollege/user/UserImportForm.vue

@@ -136,6 +136,6 @@ const handleExceed = (): void => {
 /** 下载模板操作 */
 const importTemplate = async () => {
   const res = await UserApi.importUserTemplate()
-  download.excel(res, '用户导入模版.xls')
+  download.excel(res, '导入模版.xls')
 }
 </script>

+ 1 - 1
src/views/system/workroomCollege/user/student.vue

@@ -537,7 +537,7 @@ const handleExport = async () => {
     // 发起导出
     exportLoading.value = true
     const data = await UserApi.exportStudentList(queryParams)
-    download.excel(data, '用户数据.xls')
+    download.excel(data, '学生数据.xls')
   } catch {
   } finally {
     exportLoading.value = false

+ 2 - 1
src/views/system/workroomCollege/user/teacher.vue

@@ -345,6 +345,7 @@ const openForm = (type: string, id?: number) => {
 const importFormRef = ref()
 const handleImport = () => {
   importFormRef.value.open()
+  
 }
 
 /** 修改用户状态 */
@@ -373,7 +374,7 @@ const handleExport = async () => {
     // 发起导出
     exportLoading.value = true
     const data = await UserApi.exportTeacherList(queryParams)
-    download.excel(data, '用户数据.xls')
+    download.excel(data, '教师数据.xls')
   } catch {
   } finally {
     exportLoading.value = false

+ 1 - 1
src/views/system/workroomTeacher/user/student.vue

@@ -456,7 +456,7 @@ const handleExport = async () => {
     // 发起导出
     exportLoading.value = true
     const data = await UserApi.exportStudentList(queryParams)
-    download.excel(data, '用户数据.xls')
+    download.excel(data, '学生数据.xls')
   } catch {
   } finally {
     exportLoading.value = false