Files
zhxg_pc/src/views/routine/school/learning.vue

492 lines
14 KiB
Vue
Raw Normal View History

2025-07-28 15:52:07 +08:00
<template>
<div class="app-container">
<el-form
2025-10-18 17:13:04 +08:00
v-show="showSearch"
2025-07-28 15:52:07 +08:00
ref="queryForm"
2025-10-18 17:13:04 +08:00
:model="queryParams"
2025-07-28 15:52:07 +08:00
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
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="申请时间" prop="stuCreated">
<el-date-picker
v-model="queryParams.stuCreated"
2025-10-18 17:13:04 +08:00
clearable
2025-07-28 15:52:07 +08:00
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择申请时间"
2025-10-18 17:13:04 +08:00
/>
2025-07-28 15:52:07 +08:00
</el-form-item>
<el-form-item label="学院" prop="college">
<el-select v-model="queryParams.college" placeholder="请选择学院" clearable>
<el-option
v-for="dict in dict.type.rt_filling_college"
: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"
2025-10-18 17:13:04 +08:00
>搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
2025-07-28 15:52:07 +08:00
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<!-- <el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['routine:school:add']"
>新增</el-button
>
</el-col> -->
<!-- <el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['routine:school:edit']"
>修改</el-button
>
</el-col> -->
<el-col :span="1.5">
<el-button
2025-10-18 17:13:04 +08:00
v-hasPermi="['routine:school:remove']"
2025-07-28 15:52:07 +08:00
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
2025-10-18 17:13:04 +08:00
>删除</el-button>
2025-07-28 15:52:07 +08:00
</el-col>
<el-col :span="1.5">
<el-button
2025-10-18 17:13:04 +08:00
v-hasPermi="['routine:school:export']"
2025-07-28 15:52:07 +08:00
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
2025-10-18 17:13:04 +08:00
>导出</el-button>
2025-07-28 15:52:07 +08:00
</el-col>
<right-toolbar
2025-10-18 17:13:04 +08:00
:show-search.sync="showSearch"
2025-07-28 15:52:07 +08:00
@queryTable="getList"
2025-10-18 17:13:04 +08:00
/>
2025-07-28 15:52:07 +08:00
</el-row>
<el-table
v-loading="loading"
:data="schoolList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" />
<!-- <el-table-column label="学生id" align="center" prop="id" /> -->
<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="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="fdname" />
<!-- 辅导员审核 -->
<el-table-column label="辅导员审批" align="center" prop="status">
<template slot-scope="scope">
2025-09-23 15:48:38 +08:00
<!-- 审批状态(0待审批;1已通过; -->
2025-07-28 15:52:07 +08:00
<el-tag v-if="scope.row.status == 0">待审批</el-tag>
2025-10-18 17:13:04 +08:00
<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>
2025-07-28 15:52:07 +08:00
</template>
</el-table-column>
<el-table-column label="照片" align="center" prop="photo" width="100">
<template slot-scope="scope">
<image-preview :src="scope.row.photo" :width="50" :height="50" />
</template>
</el-table-column>
<!-- 学工审批状态 -->
<!-- <el-table-column label="学工审批状态" align="center" prop="xgstatus" /> -->
<el-table-column label="学工审批状态" align="center" prop="xgstatus">
<template slot-scope="scope">
2025-09-23 15:48:38 +08:00
<!-- 审批状态(0待审批;1已通过; -->
2025-07-28 15:52:07 +08:00
<el-tag v-if="scope.row.xgstatus == 0 || scope.row.xgstatus == null ">待审批</el-tag>
2025-10-18 17:13:04 +08:00
<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>
2025-07-28 15:52:07 +08:00
</template>
</el-table-column>
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
>
<template slot-scope="scope">
<el-button
2025-10-18 17:13:04 +08:00
v-if="scope.row.status == 1 && (scope.row.xgstatus == 0 || scope.row.xgstatus == null)"
v-hasPermi="['routine:school:edit']"
2025-07-28 15:52:07 +08:00
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
2025-10-18 17:13:04 +08:00
>学工审批</el-button>
2025-07-28 15:52:07 +08:00
<el-button
2025-10-18 17:13:04 +08:00
v-hasPermi="['routine:school:remove']"
2025-07-28 15:52:07 +08:00
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
2025-10-18 17:13:04 +08:00
>删除</el-button>
2025-07-28 15:52:07 +08:00
</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="name">
<el-input
v-model="form.name"
placeholder="请输入姓名"
:disabled="true"
/>
</el-form-item>
<el-form-item label="申请时间" prop="stuCreated">
<el-date-picker
v-model="form.stuCreated"
2025-10-18 17:13:04 +08:00
clearable
2025-07-28 15:52:07 +08:00
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择申请时间"
:disabled="true"
2025-10-18 17:13:04 +08:00
/>
2025-07-28 15:52:07 +08:00
</el-form-item>
<el-form-item label="身份证" prop="identityCard">
<el-input
v-model="form.identityCard"
placeholder="请输入身份证"
:disabled="true"
/>
</el-form-item>
<el-form-item
label="原因
"
prop="because"
>
<el-input
v-model="form.because"
placeholder="请输入原因"
:disabled="true"
/>
</el-form-item>
<el-form-item label="导员意见" prop="fdyopinion">
<el-input
v-model="form.fdyopinion"
placeholder="请输入辅导员意见"
:disabled="true"
/>
</el-form-item>
<el-form-item label="学工意见" prop="xgopinion" :rules="rules.reason2">
<el-input
v-model="form.xgopinion"
type="textarea"
placeholder="请输入学工意见"
/>
</el-form-item>
<el-form-item label="是否通过" prop="xgstatus" :rules="rules.reason3">
<!-- <el-input v-model="form.xgstatus" placeholder="1 通过 2驳回" /> -->
<el-select v-model="form.xgstatus" clearable placeholder="请选择审批">
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value"
2025-10-18 17:13:04 +08:00
/>
2025-07-28 15:52:07 +08:00
</el-select>
</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,
2025-10-18 17:13:04 +08:00
} from '@/api/routine/school'
2025-07-28 15:52:07 +08:00
export default {
2025-10-18 17:13:04 +08:00
name: 'School',
2025-07-28 15:52:07 +08:00
dicts: ['rt_filling_college', 'sys_commit_status', 'sys_teacher_kpi_filling_year'],
data() {
return {
// 选择器
options: [
{
value: 1,
2025-10-18 17:13:04 +08:00
label: '通过',
2025-07-28 15:52:07 +08:00
},
{
value: 2,
2025-10-18 17:13:04 +08:00
label: '驳回',
2025-07-28 15:52:07 +08:00
},
],
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 测试表格数据
schoolList: [],
// 弹出层标题
2025-10-18 17:13:04 +08:00
title: '',
2025-07-28 15:52:07 +08:00
// 是否显示弹出层
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,
major: null,
county: null,
fdtime: null,
xgtime: null
},
// 表单参数
form: {},
// 表单校验
rules: {
reason1: [
2025-10-18 17:13:04 +08:00
{ required: true, message: '请输入审批人姓名', trigger: 'blur' },
2025-07-28 15:52:07 +08:00
],
reason2: [
2025-10-18 17:13:04 +08:00
{ required: true, message: '请输入学工意见', trigger: 'blur' },
2025-07-28 15:52:07 +08:00
],
reason3: [
2025-10-18 17:13:04 +08:00
{ required: true, message: '请选择是否通过', trigger: 'blur' },
2025-07-28 15:52:07 +08:00
],
reason4: [
2025-10-18 17:13:04 +08:00
{ required: true, message: '选择时间', trigger: 'blur' },
2025-07-28 15:52:07 +08:00
],
},
2025-10-18 17:13:04 +08:00
}
2025-07-28 15:52:07 +08:00
},
created() {
2025-10-18 17:13:04 +08:00
this.getList()
2025-07-28 15:52:07 +08:00
},
methods: {
/** 查询测试列表 */
getList() {
2025-10-18 17:13:04 +08:00
this.loading = true
2025-07-28 15:52:07 +08:00
listSchool(this.queryParams).then((response) => {
2025-10-18 17:13:04 +08:00
this.schoolList = response.rows
this.total = response.total
this.loading = false
})
2025-07-28 15:52:07 +08:00
},
// 取消按钮
cancel() {
2025-10-18 17:13:04 +08:00
this.open = false
this.reset()
2025-07-28 15:52:07 +08:00
},
// 表单重置
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,
2025-10-18 17:13:04 +08:00
}
this.resetForm('form')
2025-07-28 15:52:07 +08:00
},
/** 搜索按钮操作 */
handleQuery() {
2025-10-18 17:13:04 +08:00
this.queryParams.pageNum = 1
this.getList()
2025-07-28 15:52:07 +08:00
},
/** 重置按钮操作 */
resetQuery() {
2025-10-18 17:13:04 +08:00
this.resetForm('queryForm')
this.handleQuery()
2025-07-28 15:52:07 +08:00
},
// 多选框选中数据
handleSelectionChange(selection) {
2025-10-18 17:13:04 +08:00
this.ids = selection.map((item) => item.id)
this.single = selection.length !== 1
this.multiple = !selection.length
2025-07-28 15:52:07 +08:00
},
/** 新增按钮操作 */
handleAdd() {
2025-10-18 17:13:04 +08:00
this.reset()
this.open = true
this.title = '添加测试'
2025-07-28 15:52:07 +08:00
},
/** 修改按钮操作 */
handleUpdate(row) {
2025-10-18 17:13:04 +08:00
this.reset()
const id = row.id || this.ids
2025-07-28 15:52:07 +08:00
getSchool(id).then((response) => {
2025-10-18 17:13:04 +08:00
this.form = response.data
this.open = true
this.title = '学工审核'
})
2025-07-28 15:52:07 +08:00
},
/** 提交按钮 */
submitForm() {
2025-10-18 17:13:04 +08:00
this.$refs['form'].validate((valid) => {
2025-07-28 15:52:07 +08:00
if (valid) {
if (this.form.id != null) {
updateSchool(this.form).then((response) => {
2025-10-18 17:13:04 +08:00
this.$modal.msgSuccess('修改成功')
this.open = false
this.getList()
})
2025-07-28 15:52:07 +08:00
} else {
addSchool(this.form).then((response) => {
2025-10-18 17:13:04 +08:00
this.$modal.msgSuccess('新增成功')
this.open = false
this.getList()
})
2025-07-28 15:52:07 +08:00
}
}
2025-10-18 17:13:04 +08:00
})
2025-07-28 15:52:07 +08:00
},
/** 删除按钮操作 */
handleDelete(row) {
2025-10-18 17:13:04 +08:00
const ids = row.id || this.ids
2025-07-28 15:52:07 +08:00
this.$modal
2025-09-23 15:48:38 +08:00
.confirm('是否确认删除测试编号为"' + ids + '"的数据项?')
2025-07-28 15:52:07 +08:00
.then(function () {
2025-10-18 17:13:04 +08:00
return delSchool(ids)
2025-07-28 15:52:07 +08:00
})
.then(() => {
2025-10-18 17:13:04 +08:00
this.getList()
this.$modal.msgSuccess('删除成功')
2025-07-28 15:52:07 +08:00
})
2025-10-18 17:13:04 +08:00
.catch(() => {})
2025-07-28 15:52:07 +08:00
},
/** 导出按钮操作 */
handleExport() {
this.download(
2025-10-18 17:13:04 +08:00
'routine/school/export',
2025-07-28 15:52:07 +08:00
{
...this.queryParams,
},
`school_${new Date().getTime()}.xlsx`
2025-10-18 17:13:04 +08:00
)
2025-07-28 15:52:07 +08:00
},
},
2025-10-18 17:13:04 +08:00
}
2025-07-28 15:52:07 +08:00
</script>