257 lines
9.2 KiB
Vue
257 lines
9.2 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form ref="queryForm" :model="queryParams" size="small" :inline="true" label-width="140px">
|
|
<el-form-item label="学号" prop="stuNo">
|
|
<el-input v-model="queryParams.stuNo" placeholder="请输入学号" clearable @keyup.enter.native="handleQuery" />
|
|
</el-form-item>
|
|
<el-form-item label="姓名" prop="stuName">
|
|
<el-input v-model="queryParams.stuName" placeholder="请输入姓名" clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="学院" prop="deptName">
|
|
<el-input v-model="queryParams.deptName" placeholder="请输入学院" clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="班级" prop="className">
|
|
<el-input v-model="queryParams.className" placeholder="请输入班级" clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="审核状态" prop="applyStatus">
|
|
<el-select v-model="queryParams.applyStatus" placeholder="请选择审核状态" clearable>
|
|
<el-option v-for="dict in dict.type.knzz_tufa_apply_status" :key="dict.value" :label="dict.label"
|
|
:value="dict.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
<el-table v-loading="loading" :data="tableData">
|
|
<el-table-column label="#" align="center" prop="id" />
|
|
<el-table-column label="学年" align="center" prop="stuYearName" />
|
|
<el-table-column label="班级" align="center" prop="className" />
|
|
<el-table-column label="学号" align="center" prop="stuNo" />
|
|
<el-table-column label="姓名" align="center" prop="stuName" />
|
|
<el-table-column label="审核状态" align="center" prop="applyStatus">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.knzz_tufa_apply_status" :value="scope.row.applyStatus" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
<template slot-scope="scope">
|
|
<el-button size="mini" type="text" icon="el-icon-view" @click="lookVClick(scope.row)">查看</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize" @pagination="getList"
|
|
/>
|
|
|
|
<el-dialog title="查看" :visible.sync="lookV" :fullscreen="true" :destroy-on-close="true" @close="getList">
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<GlLook v-if="lookV" id="printDiv" :form-data="lookForm" />
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form v-if="lookForm.hardFile" label-width="120px">
|
|
<el-form-item label="证明材料">
|
|
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载文件</el-button>
|
|
</el-form-item>
|
|
<FileUpload v-model="lookForm.hardFile" />
|
|
</el-form>
|
|
<el-button v-print="printContent">打印</el-button>
|
|
<hr>
|
|
<el-timeline>
|
|
<el-timeline-item v-if="lookForm.fdyCmt && lookForm.fdyDate" :timestamp="lookForm.fdyDate"
|
|
color="green" placement="top"
|
|
>
|
|
<el-card>
|
|
<div>
|
|
<strong>辅导员审核</strong>
|
|
<div>{{ lookForm.fdyCmt }}</div>
|
|
<img v-if="lookForm.fdySign" :src="baseurl + lookForm.fdySign" alt="辅导员签名"
|
|
style="max-width:100px;margin-top:8px;"
|
|
>
|
|
</div>
|
|
</el-card>
|
|
</el-timeline-item>
|
|
<el-timeline-item v-if="lookForm.xwCmt && lookForm.xwDate" :timestamp="lookForm.xwDate"
|
|
color="green" placement="top"
|
|
>
|
|
<el-card>
|
|
<div>
|
|
<strong>院系审核</strong>
|
|
<div>{{ lookForm.xwCmt }}</div>
|
|
<img v-if="lookForm.xwSign" :src="baseurl + lookForm.xwSign" alt="院系签名"
|
|
style="max-width:100px;margin-top:8px;"
|
|
>
|
|
</div>
|
|
</el-card>
|
|
</el-timeline-item>
|
|
<el-timeline-item v-if="lookForm.xgCmt && lookForm.xgDate" :timestamp="lookForm.xgDate"
|
|
color="green" placement="top"
|
|
>
|
|
<el-card>
|
|
<div>
|
|
<strong>学工审核</strong>
|
|
<div>{{ lookForm.xgCmt }}</div>
|
|
<img v-if="lookForm.xgSign" :src="baseurl + lookForm.xgSign" alt="学工签名"
|
|
style="max-width:100px;margin-top:8px;"
|
|
>
|
|
</div>
|
|
</el-card>
|
|
</el-timeline-item>
|
|
</el-timeline>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
</div>
|
|
</template>
|
|
<script>
|
|
|
|
import { boolImg, CheckImgExists, isEmpty, fullLoading } from '@/api/helpFunc'
|
|
import { getTokenKeySessionStorage as getToken } from '@/utils/auth'
|
|
|
|
|
|
import GlApply from '@/views/comprehensive/knzzGlApply/cpnt/GlApply.vue'
|
|
import GlLook from '@/views/comprehensive/knzzGlApply/cpnt/GlLook.vue'
|
|
|
|
import { listXgAll as listView } from '@/api/comprehensive/knzzGlApply'
|
|
|
|
|
|
export default {
|
|
name: 'GlXgAll',
|
|
dicts: ['knzz_tufa_apply_status'],
|
|
components: {
|
|
GlApply,
|
|
GlLook
|
|
},
|
|
data() {
|
|
return {
|
|
loading: true,
|
|
tableData: [],
|
|
total: 0,
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
|
|
},
|
|
|
|
lookForm: {},
|
|
lookV: false,
|
|
|
|
upload: {
|
|
headers: { Authorization: 'Bearer ' + getToken() },
|
|
url: process.env.VUE_APP_BASE_API + '/common/upload',
|
|
fileList: []
|
|
},
|
|
baseurl: process.env.VUE_APP_BASE_API + '/',
|
|
boolImg,
|
|
|
|
printContent: {
|
|
id: 'printDiv',
|
|
extraCss: '',
|
|
extraHead: '<meta http-equiv="Content-Language"content="zh-cn"/>',
|
|
previewBeforeOpenCallback() {
|
|
console.log('正在加载预览窗口')
|
|
},
|
|
previewOpenCallback() {
|
|
console.log('已经加载完预览窗口')
|
|
},
|
|
beforeOpenCallback(vue) {
|
|
vue.printLoading = true
|
|
console.log('打开之前')
|
|
},
|
|
openCallback(vue) {
|
|
vue.printLoading = false
|
|
console.log('执行了打印')
|
|
},
|
|
closeCallback() {
|
|
console.log('关闭了打印工具')
|
|
},
|
|
clickMounted(vue) {
|
|
console.log('点击了打印按钮')
|
|
}
|
|
},
|
|
|
|
}
|
|
},
|
|
created() {
|
|
this.getList()
|
|
},
|
|
methods: {
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1
|
|
this.getList()
|
|
},
|
|
resetQuery() {
|
|
this.resetForm('queryForm')
|
|
this.handleQuery()
|
|
},
|
|
|
|
async getList() {
|
|
this.loading = true
|
|
let res = await listView(this.queryParams)
|
|
this.loading = false
|
|
if (res.code == 200) {
|
|
this.tableData = [...res.rows]
|
|
this.total = res.total
|
|
}
|
|
|
|
},
|
|
async lookVClick(row) {
|
|
this.lookForm = {}
|
|
this.lookForm = { ...row }
|
|
const res = await listView(this.queryParams)
|
|
console.log('API 返回的数据:', res.rows)
|
|
this.lookV = true
|
|
},
|
|
downloadDiploma() {
|
|
const raw = this.lookForm.hardFile
|
|
if (!raw) return
|
|
// 支持逗号分隔的多个文件
|
|
const files = String(raw)
|
|
.split(',')
|
|
.map((s) => s.trim())
|
|
.filter(Boolean)
|
|
|
|
const triggerDownload = (href, filename) => {
|
|
const link = document.createElement('a')
|
|
link.href = href
|
|
// 设置下载文件名(跨域时可能被浏览器忽略,但不影响触发下载/打开)
|
|
link.download = filename || ''
|
|
document.body.appendChild(link)
|
|
link.click()
|
|
document.body.removeChild(link)
|
|
}
|
|
|
|
files.forEach((file, idx) => {
|
|
const isAbsoluteUrl = /^https?:\/\//i.test(file)
|
|
const url = isAbsoluteUrl ? file : `${this.baseurl}${file}`
|
|
const name = this.getFileName(file)
|
|
// 轻微延时,避免浏览器对一次事件同时触发多个下载的限制
|
|
setTimeout(() => triggerDownload(url, name), idx * 200)
|
|
})
|
|
},
|
|
}
|
|
}
|
|
|
|
</script>
|
|
<style scoped lang="scss">
|
|
.lookForm {
|
|
.el-form-item {
|
|
margin-bottom: 5px;
|
|
}
|
|
}
|
|
</style> |