|
@@ -1,10 +1,232 @@
|
|
-<!-- -->
|
|
|
|
|
|
+<!-- 实习情况 -->
|
|
<template>
|
|
<template>
|
|
- <div>实习情况</div>
|
|
|
|
|
|
+ <v-card class="card-box pa-3">
|
|
|
|
+ <div class="d-flex justify-space-between align-center">
|
|
|
|
+ <!-- 统计 -->
|
|
|
|
+ <div class="d-flex align-center statistics">
|
|
|
|
+ <div v-for="(val, index) in statistics" :key="index" class="statistics-card pa-5">
|
|
|
|
+ <div class="color-666">{{ val.label }}</div>
|
|
|
|
+ <div class="">
|
|
|
|
+ <span class="value font-weight-bold color-primary">{{ val.count }}</span>
|
|
|
|
+ <span class="color-999 font-size-14">人</span>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <!-- 时间范围筛选 -->
|
|
|
|
+ <div class="d-flex align-center ml-7">
|
|
|
|
+ <span class="color-666">实习日期</span>
|
|
|
|
+ <div class="ml-5">
|
|
|
|
+ <date-picker
|
|
|
|
+ v-model="date"
|
|
|
|
+ :item="{
|
|
|
|
+ mode: 'daterange',
|
|
|
|
+ clearable: true,
|
|
|
|
+ placeholder: '请选择要查看的时间范围',
|
|
|
|
+ format: 'YYYY/MM/DD',
|
|
|
|
+ width: 250
|
|
|
|
+ }"
|
|
|
|
+ @change="handleChangeDate"
|
|
|
|
+ />
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="mt-5">
|
|
|
|
+ <CtTable
|
|
|
|
+ :items="tableData"
|
|
|
|
+ :headers="headers"
|
|
|
|
+ :loading="loading"
|
|
|
|
+ :elevation="0"
|
|
|
|
+ :is-tools="false"
|
|
|
|
+ :showPage="true"
|
|
|
|
+ :total="total"
|
|
|
|
+ :page-info="query"
|
|
|
|
+ itemKey="id"
|
|
|
|
+ @pageHandleChange="handleChangePage"
|
|
|
|
+ >
|
|
|
|
+ <template #studentName="{ item }">
|
|
|
|
+ <div class="d-flex align-center">
|
|
|
|
+ <v-avatar size="40" :image="getUserAvatar(item?.person?.avatar, item?.person?.sex)"></v-avatar>
|
|
|
|
+ <span class="ml-3">{{ item?.person?.name }}</span>
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+ <template #actions="{ item }">
|
|
|
|
+ <v-btn v-if="!item?.recommendationLetter" color="primary" variant="text" @click="handleUploadLetter(item.id)">上传推荐信</v-btn>
|
|
|
|
+ <v-btn v-if="!item?.evaluate" color="#00897B" variant="text" @click="handleIssueCertificate(item.id)">颁发实习证书</v-btn>
|
|
|
|
+ </template>
|
|
|
|
+ </CtTable>
|
|
|
|
+ </div>
|
|
|
|
+ </v-card>
|
|
|
|
+
|
|
|
|
+ <!-- 上传推荐信 -->
|
|
|
|
+ <CtDialog :visible="showLitterDialog" :widthType="2" titleClass="text-h6" title="上传推荐信" @close="handleLetterClose" @submit="handleSubmitLetter">
|
|
|
|
+ <UploadRecommendationLetterForm ref="RecommendationLetterRef" />
|
|
|
|
+ </CtDialog>
|
|
|
|
+
|
|
|
|
+ <!-- 颁发实习证书 -->
|
|
|
|
+ <CtDialog :visible="showCertificateDialog" :widthType="2" titleClass="text-h6" title="颁发实习证书" @close="handleCertificateClose" @submit="handleSubmitCertificate">
|
|
|
|
+ <IssueCertificateForm ref="IssueCertificateFormRef" />
|
|
|
|
+ </CtDialog>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
defineOptions({name: 'studentList-internship-situation'})
|
|
defineOptions({name: 'studentList-internship-situation'})
|
|
|
|
+import { ref, onMounted } from 'vue'
|
|
|
|
+import { getUserAvatar } from '@/utils/avatar'
|
|
|
|
+import DatePicker from '@/components/FormUI/datePicker'
|
|
|
|
+import UploadRecommendationLetterForm from './RecommendationLetterForm'
|
|
|
|
+import IssueCertificateForm from './CertificateForm'
|
|
|
|
+import { getStudentPage, getRecordStatusCount, saveRecommend, saveCertificate } from '@/api/recruit/enterprise/student'
|
|
|
|
+import { getDict } from '@/hooks/web/useDictionaries'
|
|
|
|
+import { dealDictObjData } from '@/utils/position'
|
|
|
|
+import { formatName } from '@/utils/getText'
|
|
|
|
+import { timesTampChange } from '@/utils/date'
|
|
|
|
+import { convertTimestampsToDayRange } from '@/utils/date'
|
|
|
|
+import Snackbar from '@/plugins/snackbar'
|
|
|
|
+
|
|
|
|
+const date = ref(null)
|
|
|
|
+const statistics = ref([])
|
|
|
|
+
|
|
|
|
+const loading = ref(false)
|
|
|
|
+const total = ref(0)
|
|
|
|
+const query = ref({
|
|
|
|
+ pageNo: 1,
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ startTime: null
|
|
|
|
+})
|
|
|
|
+const tableData = ref([])
|
|
|
|
+
|
|
|
|
+const headers = [
|
|
|
|
+ { title: '学生姓名', key: 'studentName', sortable: false },
|
|
|
|
+ { title: '就读学校', key: 'student.schoolName', sortable: false },
|
|
|
|
+ { title: '所属院系', key: 'student.schoolDepartmentName', sortable: false },
|
|
|
|
+ { title: '所属专业', key: 'student.majorName', sortable: false },
|
|
|
|
+ { title: '应聘职位', key: 'job.name', sortable: false, value: item => formatName(item.job.name) },
|
|
|
|
+ { title: '到岗日期', key: 'startTime', sortable: false, value: item => timesTampChange(item.startTime, 'Y-M-D') },
|
|
|
|
+ { title: '结束日期', key: 'endTime', sortable: false, value: item => timesTampChange(item.endTime, 'Y-M-D') },
|
|
|
|
+ { title: '创建日期', key: 'createTime', sortable: false, value: item => timesTampChange(item.createTime) },
|
|
|
|
+ { title: '操作', key: 'actions', sortable: false }
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+// 学生列表
|
|
|
|
+const getList = async () => {
|
|
|
|
+ loading.value = true
|
|
|
|
+ try {
|
|
|
|
+ const result = await getStudentPage(query.value)
|
|
|
|
+ tableData.value = result?.list.map(e => {
|
|
|
|
+ e.enterprise = dealDictObjData({}, e.enterprise)
|
|
|
|
+ e.job = dealDictObjData({}, e.job)
|
|
|
|
+ return e
|
|
|
|
+ })
|
|
|
|
+ total.value = result?.total || 0
|
|
|
|
+ } finally {
|
|
|
|
+ loading.value = false
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// 数值统计
|
|
|
|
+const getStatistics = async () => {
|
|
|
|
+ try {
|
|
|
|
+ const data = await getRecordStatusCount({ type: '-1' })
|
|
|
|
+ statistics.value.forEach(e => {
|
|
|
|
+ const obj = data.find(val => val.key === e.value)
|
|
|
|
+ e.count = obj ? obj.value : 0
|
|
|
|
+ })
|
|
|
|
+ } catch {}
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+onMounted(async () => {
|
|
|
|
+ const { data } = await getDict('student_practice_status')
|
|
|
|
+ statistics.value = data
|
|
|
|
+ // getStatistics()
|
|
|
|
+ // getList()
|
|
|
|
+})
|
|
|
|
+
|
|
|
|
+const handleChangePage = (val) => {
|
|
|
|
+ query.value.pageNo = val
|
|
|
|
+ getList()
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// 时间范围选择
|
|
|
|
+const handleChangeDate = (time) => {
|
|
|
|
+ if (time && time.length) {
|
|
|
|
+ query.value.startTime = convertTimestampsToDayRange(time)
|
|
|
|
+ } else {
|
|
|
|
+ query.value.startTime = []
|
|
|
|
+ }
|
|
|
|
+ query.value.pageNo = 1
|
|
|
|
+ getList()
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// 上传推荐信
|
|
|
|
+const recordId = ref(null)
|
|
|
|
+const showLitterDialog = ref(false)
|
|
|
|
+const RecommendationLetterRef = ref(null)
|
|
|
|
+const handleUploadLetter = (id) => {
|
|
|
|
+ recordId.value = id
|
|
|
|
+ showLitterDialog.value = true
|
|
|
|
+}
|
|
|
|
+const handleLetterClose = () => {
|
|
|
|
+ recordId.value = null
|
|
|
|
+ showLitterDialog.value = false
|
|
|
|
+}
|
|
|
|
+const handleSubmitLetter = async () => {
|
|
|
|
+ const { valid } = await RecommendationLetterRef.value.CtFormRef.formRef.validate()
|
|
|
|
+ if (!valid) return
|
|
|
|
+ const query = RecommendationLetterRef.value.getQuery()
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ await saveRecommend({ id: recordId.value, recommendationLetter: query.url })
|
|
|
|
+ Snackbar.success('上传成功')
|
|
|
|
+ getList()
|
|
|
|
+ handleLetterClose()
|
|
|
|
+ } catch {
|
|
|
|
+ handleLetterClose()
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// 颁发实习证书
|
|
|
|
+const showCertificateDialog = ref(false)
|
|
|
|
+const IssueCertificateFormRef = ref(null)
|
|
|
|
+const handleIssueCertificate = (id) => {
|
|
|
|
+ recordId.value = id
|
|
|
|
+ showCertificateDialog.value = true
|
|
|
|
+}
|
|
|
|
+const handleCertificateClose = () => {
|
|
|
|
+ recordId.value = null
|
|
|
|
+ showCertificateDialog.value = false
|
|
|
|
+}
|
|
|
|
+const handleSubmitCertificate = async () => {
|
|
|
|
+ const { valid } = await IssueCertificateFormRef.value.CtFormRef.formRef.validate()
|
|
|
|
+ if (!valid) return
|
|
|
|
+ const query = IssueCertificateFormRef.value.getQuery()
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ await saveCertificate({ id: recordId.value, ...query })
|
|
|
|
+ Snackbar.success('上传成功')
|
|
|
|
+ getList()
|
|
|
|
+ handleCertificateClose()
|
|
|
|
+ } catch {
|
|
|
|
+ handleCertificateClose()
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|
|
</script>
|
|
</script>
|
|
-<style lang="scss" scoped>
|
|
|
|
|
|
+
|
|
|
|
+<style scoped lang="scss">
|
|
|
|
+.statistics {
|
|
|
|
+ width: 50%;
|
|
|
|
+ &-card {
|
|
|
|
+ width: 33.33%;
|
|
|
|
+ margin-right: 12px;
|
|
|
|
+ background-color: #f7f8fa;
|
|
|
|
+ border-radius: 10px;
|
|
|
|
+ &:nth-child(3) {
|
|
|
|
+ margin-right: 0;
|
|
|
|
+ }
|
|
|
|
+ .value {
|
|
|
|
+ font-size: 44px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
</style>
|
|
</style>
|