|
@@ -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
|