forked from integrated_whb/integrated_whb_vue
104 lines
2.7 KiB
Vue
104 lines
2.7 KiB
Vue
<template>
|
|
<el-dialog
|
|
:title="title"
|
|
:model-value="type === 102"
|
|
width="1100px"
|
|
@close="fnClose"
|
|
>
|
|
<div class="tr">
|
|
<el-button type="primary" @click="fnExport">导出</el-button>
|
|
</div>
|
|
<div class="tc">
|
|
<h3>{{ year }}年度本单位师资管理台账</h3>
|
|
</div>
|
|
<p class="mb">单位名称:{{ corpName }}</p>
|
|
<layout-table :data="list" :show-pagination="false">
|
|
<el-table-column type="index" label="序号" width="60" />
|
|
<el-table-column prop="NAME" label="姓名" />
|
|
<el-table-column prop="WORKYEAR" label="从事本专业工作年限" />
|
|
<el-table-column prop="OCCUPATION" label="专/兼职">
|
|
<span>兼职</span>
|
|
</el-table-column>
|
|
<el-table-column prop="CARD_ID" label="证书编号" />
|
|
<el-table-column prop="ASSESSMENTDEPARTMENT" label="考核部门" />
|
|
<el-table-column prop="ASSESSMENTTIME" label="考核日期" />
|
|
<el-table-column prop="ASSESSMENTRESULT" label="考核结果" />
|
|
<el-table-column prop="DESCR" label="备注" />
|
|
</layout-table>
|
|
<div class="flex mt">
|
|
<div>档案管理人员:</div>
|
|
<div>更新日期:</div>
|
|
</div>
|
|
<template #footer>
|
|
<el-button @click="fnClose">关闭</el-button>
|
|
</template>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script setup>
|
|
import LayoutTable from "@/components/table/index";
|
|
import { watchEffect } from "vue";
|
|
import { ElMessageBox } from "element-plus";
|
|
import { debounce } from "throttle-debounce";
|
|
import {
|
|
getArchivesTeacherList,
|
|
downloadTeacherword,
|
|
} from "@/request/training_archive_management.js";
|
|
import useListData from "@/assets/js/useListData.js";
|
|
|
|
const props = defineProps({
|
|
type: {
|
|
type: Number,
|
|
required: true,
|
|
},
|
|
title: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
corpName: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
year: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
});
|
|
const emits = defineEmits(["update:type"]);
|
|
const { list, fnGetData } = useListData(getArchivesTeacherList, {
|
|
otherParams: { TYPE: props.type, YEAR: props.year },
|
|
usePagination: false,
|
|
immediate: false,
|
|
});
|
|
watchEffect(() => {
|
|
if (props.type === 102) fnGetData();
|
|
});
|
|
const fnExport = debounce(
|
|
1000,
|
|
async () => {
|
|
await ElMessageBox.confirm("确定要导出吗?", { type: "warning" });
|
|
await downloadTeacherword({
|
|
YEAR: props.year,
|
|
NAME: props.corpName,
|
|
});
|
|
await ElMessageBox.confirm(
|
|
"导出后请前往档案下载中下载该档案!",
|
|
"温馨提示",
|
|
{ type: "info" }
|
|
);
|
|
},
|
|
{ atBegin: true }
|
|
);
|
|
const fnClose = () => {
|
|
emits("update:type", 0);
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.flex {
|
|
width: 80%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
</style>
|