This commit is contained in:
zhoutianchi
2026-02-05 18:20:12 +08:00
parent 81178d8b6a
commit 88c9aab832
7 changed files with 224 additions and 1 deletions

View File

@@ -104,6 +104,14 @@
@click="handleDownLoadWord"
:loading="exportLoading"
>导出信息</el-button>
<el-button
v-auth="'professional_teacherinfo_import'"
type="primary"
plain
icon="UploadFilled"
:loading="exportLoading"
@click="handleImportDialog">导入信息
</el-button>
</div>
<div class="header-right">
<RightToolbar
@@ -238,6 +246,8 @@
<MultiDialog ref="multiDialogRef" @getList="getDataList" :page="state.pagination" :nowRow="null" />
<DataForm ref="dataFormRef" @refreshData="handleFilter" />
<ProfessionalBackResaon ref="backReasonRef" @refreshData="handleFilter" />
<import-teacher-other-info ref="importTeacherOtherInfoRef" @refreshData="handleFilter"></import-teacher-other-info>
</div>
</template>
@@ -265,6 +275,7 @@ const MultiDialog = defineAsyncComponent(() => import('/@/views/professional/tea
const DataForm = defineAsyncComponent(() => import('./form.vue'))
const ProfessionalBackResaon = defineAsyncComponent(() => import('/@/views/professional/common/professional-back-resaon.vue'))
const previewFile = defineAsyncComponent(() => import('/@/components/tools/preview-file.vue'))
const ImportTeacherOtherInfo = defineAsyncComponent(() => import('/@/views/professional/common/import-teacher-other-info.vue'))
// 无权限即无节点:使用 useAuth + v-if
const { hasAuth } = useAuth()
@@ -462,6 +473,11 @@ const loadDictData = async () => {
}
}
const importTeacherOtherInfoRef=ref()
const handleImportDialog = () => {
importTeacherOtherInfoRef.value?.init('titleRelation')
}
// 初始化:仅加载下拉字典,表格数据由 useTable 在 createdIsNeed: true 时自动请求
onMounted(async () => {
await loadDictData()