Files
zhxg_pc/src/views/teacher/kpiFilling/kpiFillingGuidance/index.vue

310 lines
11 KiB
Vue

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<!-- <el-form-item label="辅导员" prop="fdyName">
<el-input
v-model="queryParams.fdyName"
placeholder="请输入辅导员名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item> -->
<el-form-item label="年份" prop="fillingYear">
<el-select v-model="queryParams.fillingYear" placeholder="请选择年份" clearable @change="handleQuery">
<el-option v-for="dict in dict.type.sys_teacher_kpi_filling_year" :key="dict.value" :label="dict.label" :value="dict.value" />
</el-select>
</el-form-item>
<el-form-item label="月份" prop="fillingMonth">
<el-select v-model="queryParams.fillingMonth" placeholder="请选择月份" clearable @change="handleQuery">
<el-option v-for="dict in dict.type.sys_teacher_kpi_filling_month" :key="dict.value" :label="dict.label" :value="dict.value" />
</el-select>
</el-form-item>
<el-form-item label="班级类型" prop="classType">
<el-select v-model="queryParams.classType" placeholder="请选择班级类型" clearable>
<el-option label="毕业班" value="graduate" />
<el-option label="非毕业班" value="ungraduate" />
</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-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="['teacher:kpiFillingGuidance: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="['teacher:kpiFillingGuidance:edit']"
>修改</el-button>
</el-col> -->
<!-- <el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['teacher:kpiFillingGuidance:remove']"
>删除</el-button>
</el-col> -->
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['teacher:kpiFillingGuidance:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="kpiFillingGuidanceList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="毕业生就业去向登记审核分数" align="center" prop="gradFormAuditScoring" />
<el-table-column label="学生职业咨询与辅导分数" align="center" prop="stuCareerConsultScoring" />
<el-table-column label="毕业生就业指导与推荐分数" align="center" prop="gradFormGuidanceScoring" />
<el-table-column label="填报人名称" align="center" prop="fdyName" />
<el-table-column label="填报年份" align="center" prop="fillingYear">
<template slot-scope="scope">
<el-tag
type="success"
style="background-color: #f0f9eb; border-color: #e1f3d8; color: #2ecc71;"
v-if="scope.row.fillingYear"
>{{ scope.row.fillingYear + '年' }}</el-tag>
</template>
</el-table-column>
<el-table-column label="填报月份" align="center" prop="fillingMonth">
<template slot-scope="scope">
<el-tag
type="primary"
style="background-color: #ecf5ff; border-color: #d9ecff; color: #409eff;"
v-if="scope.row.fillingMonth"
>{{ scope.row.fillingMonth + '月' }}</el-tag>
</template>
</el-table-column>
<!-- <el-table-column label="班级类型" align="center" prop="classType" /> -->
<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-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['teacher:kpiFillingGuidance:edit']"
>修改</el-button> -->
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['teacher:kpiFillingGuidance:remove']"
>删除</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="gradFormAuditScoring">
<el-input v-model="form.gradFormAuditScoring" placeholder="请输入毕业生就业去向登记审核分数" />
</el-form-item>
<el-form-item label="学生职业咨询与辅导分数" prop="stuCareerConsultScoring">
<el-input v-model="form.stuCareerConsultScoring" placeholder="请输入学生职业咨询与辅导分数" />
</el-form-item>
<el-form-item label="毕业生就业指导与推荐分数" prop="gradFormGuidanceScoring">
<el-input v-model="form.gradFormGuidanceScoring" placeholder="请输入毕业生就业指导与推荐分数" />
</el-form-item>
<el-form-item label="填报人名称" prop="fdyName">
<el-input v-model="form.fdyName" 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 { listKpiFillingGuidance, getKpiFillingGuidance, delKpiFillingGuidance, addKpiFillingGuidance, updateKpiFillingGuidance, getByFdyNameAndYearAndMonth } from "@/api/teacher/kpiFillingGuidance";
export default {
name: "KpiFillingGuidance",
dicts: ['sys_teacher_kpi_filling_year', 'sys_teacher_kpi_filling_month'],
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 业绩考核-个人填报-就业指导工作表格数据
kpiFillingGuidanceList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
fdyName: null,
fillingYear: null,
fillingMonth: null,
classType: null
},
// 表单参数
form: {},
// 表单校验
rules: {
}
};
},
created() {
this.getList();
},
methods: {
/** 查询业绩考核-个人填报-就业指导工作列表 */
getList() {
this.loading = true;
if (this.queryParams.fdyName && this.queryParams.fillingYear && this.queryParams.fillingMonth) {
getByFdyNameAndYearAndMonth(this.queryParams).then(response => {
this.kpiFillingGuidanceList = response.rows;
this.total = response.total;
this.loading = false;
});
} else {
listKpiFillingGuidance(this.queryParams).then(response => {
this.kpiFillingGuidanceList = response.rows;
this.total = response.total;
this.loading = false;
});
}
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
gradFormAuditScoring: null,
stuCareerConsultScoring: null,
gradFormGuidanceScoring: null,
fdyName: null,
fillingYear: null,
fillingMonth: null,
classType: 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
getKpiFillingGuidance(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) {
updateKpiFillingGuidance(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addKpiFillingGuidance(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 delKpiFillingGuidance(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('teacher/kpiFillingGraduationGuidance/export', {
...this.queryParams
}, `kpiFillingGuidance_${new Date().getTime()}.xlsx`)
}
}
};
</script>