394 lines
13 KiB
Vue
394 lines
13 KiB
Vue
<template>
|
||
<div class="app-container">
|
||
<el-form v-show="showSearch" ref="queryForm" :model="queryParams" size="small" :inline="true" label-width="68px">
|
||
<!-- <el-form-item label="学号" prop="studentId">
|
||
<el-input v-model="queryParams.studentId" placeholder="请输入学号" clearable @keyup.enter.native="handleQuery" />
|
||
</el-form-item> -->
|
||
<el-form-item label="姓名" prop="name">
|
||
<el-input v-model="queryParams.name" placeholder="请输入姓名" clearable :disabled="true" @keyup.enter.native="handleQuery" />
|
||
</el-form-item>
|
||
|
||
<!-- <el-form-item label="申请时间" prop="stuCreated">
|
||
<el-date-picker clearable v-model="queryParams.stuCreated" type="date" value-format="yyyy-MM-dd"
|
||
placeholder="请选择申请时间">
|
||
</el-date-picker>
|
||
</el-form-item> -->
|
||
<!-- <el-form-item label="身份证" prop="identityCard">
|
||
<el-input v-model="queryParams.identityCard" placeholder="请输入身份证" clearable @keyup.enter.native="handleQuery" />
|
||
</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="schoolList" @selection-change="handleSelectionChange">
|
||
<el-table-column type="selection" width="55" align="center" />
|
||
<el-table-column label="学号" align="center" prop="studentId" />
|
||
<el-table-column label="性别" align="center" prop="sex" />
|
||
<el-table-column label="姓名" align="center" prop="name" />
|
||
<el-table-column label="学院" align="center" prop="college" />
|
||
<el-table-column label="班级" align="center" prop="className" />
|
||
<el-table-column label="级别" align="center" prop="grade" />
|
||
<el-table-column label="申请时间" align="center" prop="stuCreated" width="180">
|
||
<template slot-scope="scope">
|
||
<span>{{ parseTime(scope.row.stuCreated, "{y}-{m}-{d}") }}</span>
|
||
</template>
|
||
</el-table-column>
|
||
<!-- <el-table-column label="身份证" align="center" prop="identityCard" /> -->
|
||
<el-table-column label="原因" align="center" prop="because">
|
||
<template slot-scope="scope">
|
||
|
||
<div :title="scope.row.because"
|
||
style="white-space:nowrap;width:100%;text-overflow: ellipsis;overflow: hidden;"
|
||
>{{ scope.row.because }}
|
||
</div>
|
||
</template>
|
||
</el-table-column>
|
||
|
||
|
||
<!-- <el-table-column label="状态" align="center" prop="status" /> -->
|
||
<el-table-column label="民族" align="center" prop="nation" />
|
||
<el-table-column label="辅导员" align="center" prop="fdname" />
|
||
<el-table-column label="辅导员审批状态" align="center" prop="status">
|
||
<template slot-scope="scope">
|
||
<!-- 审批状态(0、待审批;1、已通过; -->
|
||
<el-tag v-if="scope.row.status == 0 || scope.row.status == null">待审批</el-tag>
|
||
<el-tag v-else-if="scope.row.status == 1" type="success">已通过</el-tag>
|
||
<el-tag v-else-if="scope.row.status == 2" type="danger">已驳回</el-tag>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="辅导员意见" align="center" prop="fdyopinion" />
|
||
<el-table-column label="学工名字" align="center" prop="xgname" />
|
||
<el-table-column label="学工审批状态" align="center" prop="xgstatus">
|
||
<template slot-scope="scope">
|
||
<!-- 审批状态(0、待审批;1、已通过; -->
|
||
<el-tag v-if="scope.row.xgstatus == 0 || scope.row.xgstatus == null">待审批</el-tag>
|
||
<el-tag v-else-if="scope.row.xgstatus == 1" type="success">已通过</el-tag>
|
||
<el-tag v-else-if="scope.row.xgstatus == 2" type="danger">已驳回</el-tag>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="学工意见" align="center" prop="xgopinion" />
|
||
|
||
<!-- 打印模板 -->
|
||
<el-table-column label="打印模板" align="center" prop="xgstatus">
|
||
<template slot-scope="scope">
|
||
<el-tag v-if="scope.row.xgstatus == 1" type="success">
|
||
<div @click="handledetail(scope.row)">生成模板</div>
|
||
<!-- <el-button @click="jump">生成模板</el-button> -->
|
||
</el-tag>
|
||
<el-tag v-else>等待生成</el-tag>
|
||
</template>
|
||
</el-table-column>
|
||
|
||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||
<template slot-scope="scope">
|
||
<el-button v-hasPermi="['routine:school:edit']" size="mini" type="text" icon="el-icon-edit"
|
||
@click="handledetail(scope.row)"
|
||
>修改信息</el-button>
|
||
<el-button v-hasPermi="['routine:school:remove']" size="mini" type="text" icon="el-icon-delete"
|
||
@click="handleDelete(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="title" :visible.sync="open" width="500px" append-to-body>
|
||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||
<el-form-item label="学号" prop="studentId">
|
||
<el-input v-model="form.studentId" placeholder="请输入学号" />
|
||
</el-form-item>
|
||
<el-form-item label="姓名" prop="name">
|
||
<el-input v-model="form.name" placeholder="请输入姓名" />
|
||
</el-form-item>
|
||
<el-form-item label="学院" prop="college">
|
||
<el-input v-model="form.college" placeholder="请输入学院" />
|
||
</el-form-item>
|
||
<el-form-item label="班级" prop="className">
|
||
<el-input v-model="form.className" placeholder="请输入班级" />
|
||
</el-form-item>
|
||
<el-form-item label="级别" prop="grade">
|
||
<el-input v-model="form.grade" placeholder="请输入级别" />
|
||
</el-form-item>
|
||
<el-form-item label="申请时间" prop="stuCreated">
|
||
<el-date-picker v-model="form.stuCreated" clearable type="date" value-format="yyyy-MM-dd"
|
||
placeholder="请选择申请时间"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="身份证" prop="identityCard">
|
||
<el-input v-model="form.identityCard" placeholder="请输入身份证" />
|
||
</el-form-item>
|
||
<el-form-item label="原因
|
||
" prop="because"
|
||
>
|
||
<el-input v-model="form.because" placeholder="请输入原因
|
||
"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="籍贯" prop="jg">
|
||
<el-input v-model="form.jg" placeholder="请输入籍贯" />
|
||
</el-form-item>
|
||
<el-form-item label="照片" prop="photo">
|
||
<image-upload v-model="form.photo" />
|
||
</el-form-item>
|
||
<el-form-item label="出生日期" prop="birthday">
|
||
<el-input v-model="form.birthday" placeholder="请输入出生日期" />
|
||
</el-form-item>
|
||
<el-form-item label="入学时间" prop="Intake">
|
||
<el-date-picker v-model="form.Intake" clearable type="date" value-format="yyyy-MM-dd" placeholder="请选择入学时间" />
|
||
</el-form-item>
|
||
<el-form-item label="民族" prop="nation">
|
||
<el-input v-model="form.nation" placeholder="请输入民族" />
|
||
</el-form-item>
|
||
<el-form-item label="家庭地址" prop="homeaddress">
|
||
<el-input v-model="form.homeaddress" placeholder="请输入家庭地址" />
|
||
</el-form-item>
|
||
</el-form>
|
||
<div slot="footer" class="dialog-footer">
|
||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||
<el-button @click="cancel">取 消</el-button>
|
||
</div>
|
||
</el-dialog>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import {
|
||
listSchool,
|
||
getSchool,
|
||
delSchool,
|
||
addSchool,
|
||
updateSchool,
|
||
} from '@/api/routine/school'
|
||
|
||
import { getUserProfile } from '@/api/system/user' // 获取
|
||
|
||
export default {
|
||
name: 'School',
|
||
data() {
|
||
return {
|
||
// 遮罩层
|
||
loading: true,
|
||
// 选中数组
|
||
ids: [],
|
||
// 非单个禁用
|
||
single: true,
|
||
// 非多个禁用
|
||
multiple: true,
|
||
// 显示搜索条件
|
||
showSearch: true,
|
||
// 总条数
|
||
total: 0,
|
||
// 测试表格数据
|
||
schoolList: [],
|
||
// 弹出层标题
|
||
title: '',
|
||
// 是否显示弹出层
|
||
open: false,
|
||
// 查询参数
|
||
queryParams: {
|
||
pageNum: 1,
|
||
pageSize: 10,
|
||
sex: null,
|
||
|
||
describe: null,
|
||
studentId: null,
|
||
name: null,
|
||
college: null,
|
||
grade: null,
|
||
stuCreated: null,
|
||
identityCard: null,
|
||
because: null,
|
||
status: null,
|
||
jg: null,
|
||
photo: null,
|
||
birthday: null,
|
||
Intake: null,
|
||
nation: null,
|
||
homeaddress: null,
|
||
fdyopinion: null,
|
||
xgopinion: null,
|
||
xgstatus: null,
|
||
className: null,
|
||
fdname: null,
|
||
xgname: null,
|
||
},
|
||
// 表单参数
|
||
form: {},
|
||
// 表单校验
|
||
rules: {
|
||
},
|
||
}
|
||
},
|
||
|
||
|
||
|
||
created() {
|
||
this.getUser()
|
||
},
|
||
methods: {
|
||
// 跳转到打印页面
|
||
handledetail(row) {
|
||
this.$router.push({
|
||
path: '/routine/school/school',
|
||
query: {
|
||
id: row.id,
|
||
status: row.status,
|
||
},
|
||
// });
|
||
})
|
||
},
|
||
|
||
// 获取当前登录信息
|
||
getUser() {
|
||
this.loading = true
|
||
getUserProfile().then(response => {
|
||
// this.user = response.data;
|
||
this.roleGroup = response.roleGroup
|
||
// this.postGroup = response.postGroup;
|
||
// console.log(response);
|
||
if (response.roleGroup.includes('学生')) {
|
||
this.queryParams.name = response.data.nickName
|
||
this.form.name = response.data.nickName
|
||
console.log(this.form.name)
|
||
this.getList()
|
||
return
|
||
} else if (!response.roleGroup.includes('学生')) {
|
||
this.getList()
|
||
return
|
||
}
|
||
this.loading = false
|
||
// this.getList();
|
||
})
|
||
},
|
||
|
||
/** 查询测试列表 */
|
||
getList() {
|
||
this.loading = true
|
||
listSchool(this.queryParams).then((response) => {
|
||
this.schoolList = response.rows
|
||
this.total = response.total
|
||
this.loading = false
|
||
})
|
||
},
|
||
// 取消按钮
|
||
cancel() {
|
||
this.open = false
|
||
this.reset()
|
||
},
|
||
// 表单重置
|
||
reset() {
|
||
this.form = {
|
||
id: null,
|
||
sex: null,
|
||
|
||
describe: null,
|
||
studentId: null,
|
||
name: null,
|
||
college: null,
|
||
grade: null,
|
||
stuCreated: null,
|
||
identityCard: null,
|
||
because: null,
|
||
status: null,
|
||
jg: null,
|
||
photo: null,
|
||
birthday: null,
|
||
Intake: null,
|
||
nation: null,
|
||
homeaddress: null,
|
||
fdyopinion: null,
|
||
xgopinion: null,
|
||
xgstatus: null,
|
||
className: null,
|
||
fdname: null,
|
||
xgname: null,
|
||
}
|
||
this.resetForm('form')
|
||
},
|
||
/** 搜索按钮操作 */
|
||
handleQuery() {
|
||
this.queryParams.pageNum = 1
|
||
this.getList()
|
||
},
|
||
/** 重置按钮操作 */
|
||
resetQuery() {
|
||
this.resetForm('queryForm')
|
||
this.handleQuery()
|
||
},
|
||
// 多选框选中数据
|
||
handleSelectionChange(selection) {
|
||
this.ids = selection.map((item) => item.id)
|
||
this.single = selection.length !== 1
|
||
this.multiple = !selection.length
|
||
},
|
||
/** 新增按钮操作 */
|
||
handleAdd() {
|
||
this.reset()
|
||
this.open = true
|
||
this.title = '添加测试'
|
||
},
|
||
/** 修改按钮操作 */
|
||
handleUpdate(row) {
|
||
this.reset()
|
||
const id = row.id || this.ids
|
||
getSchool(id).then((response) => {
|
||
this.form = response.data
|
||
this.open = true
|
||
this.title = '完善个人信息'
|
||
})
|
||
},
|
||
/** 提交按钮 */
|
||
submitForm() {
|
||
this.$refs['form'].validate((valid) => {
|
||
if (valid) {
|
||
if (this.form.id != null) {
|
||
updateSchool(this.form).then((response) => {
|
||
this.$modal.msgSuccess('修改成功')
|
||
this.open = false
|
||
this.getList()
|
||
})
|
||
} else {
|
||
addSchool(this.form).then((response) => {
|
||
this.$modal.msgSuccess('新增成功')
|
||
this.open = false
|
||
this.getList()
|
||
})
|
||
}
|
||
}
|
||
})
|
||
},
|
||
/** 删除按钮操作 */
|
||
handleDelete(row) {
|
||
const ids = row.id || this.ids
|
||
this.$modal
|
||
.confirm('是否确认删除测试编号为"' + ids + '"的数据项?')
|
||
.then(function () {
|
||
return delSchool(ids)
|
||
})
|
||
.then(() => {
|
||
this.getList()
|
||
this.$modal.msgSuccess('删除成功')
|
||
})
|
||
.catch(() => { })
|
||
},
|
||
/** 导出按钮操作 */
|
||
handleExport() {
|
||
this.download(
|
||
'routine/school/export',
|
||
{
|
||
...this.queryParams,
|
||
},
|
||
`school_${new Date().getTime()}.xlsx`
|
||
)
|
||
},
|
||
},
|
||
}
|
||
</script>
|