298 lines
12 KiB
Vue
298 lines
12 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="dutyTime">
|
||
|
|
<el-date-picker clearable v-model="queryParams.dutyTime" type="date" value-format="yyyy-MM-dd"
|
||
|
|
placeholder="请选择值班时间">
|
||
|
|
</el-date-picker>
|
||
|
|
</el-form-item>
|
||
|
|
<!-- <el-form-item label="值班人" prop="dutyUserName">
|
||
|
|
<el-input v-model="queryParams.dutyUserName" placeholder="请输入值班人" clearable @keyup.enter.native="handleQuery" />
|
||
|
|
</el-form-item> -->
|
||
|
|
<!-- <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>
|
||
|
|
<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:kpiFillingRewardsKpi: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:kpiFillingRewardsKpi: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:kpiFillingRewardsKpi: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:kpiFillingRewardsKpi:export']">导出</el-button>
|
||
|
|
</el-col>
|
||
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||
|
|
</el-row>
|
||
|
|
|
||
|
|
<el-table v-loading="loading" :data="kpiFillingRewardsKpiList" @selection-change="handleSelectionChange">
|
||
|
|
<el-table-column type="selection" width="55" align="center" />
|
||
|
|
<el-table-column label="值班说明" align="center" prop="dutyDescription" />
|
||
|
|
<el-table-column label="值班时间" align="center" prop="dutyTime" width="180">
|
||
|
|
<template slot-scope="scope">
|
||
|
|
<span>{{ parseTime(scope.row.dutyTime, '{y}-{m}-{d}') }}</span>
|
||
|
|
</template>
|
||
|
|
</el-table-column>
|
||
|
|
<el-table-column label="值班人" align="center" prop="fdyName" />
|
||
|
|
<el-table-column label="填报人名称" align="center" prop="fdyName" />
|
||
|
|
<el-table-column label="填报年份" align="center" prop="fillingYear">
|
||
|
|
<template slot-scope="scope">
|
||
|
|
<dict-tag :options="dict.type.sys_teacher_kpi_filling_year" :value="scope.row.fillingYear" />
|
||
|
|
</template>
|
||
|
|
</el-table-column>
|
||
|
|
<el-table-column label="填报月份" align="center" prop="fillingMonth">
|
||
|
|
<template slot-scope="scope">
|
||
|
|
<dict-tag :options="dict.type.sys_teacher_kpi_filling_month" :value="scope.row.fillingMonth" />
|
||
|
|
</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-edit" @click="handleUpdate(scope.row)"
|
||
|
|
v-hasPermi="['teacher:kpiFillingRewardsKpi:edit']">修改</el-button>
|
||
|
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
||
|
|
v-hasPermi="['teacher:kpiFillingRewardsKpi: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="600px" append-to-body>
|
||
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
||
|
|
<el-form-item label="值班说明" prop="dutyDescription">
|
||
|
|
<el-input v-model="form.dutyDescription" type="textarea" placeholder="请输入内容" />
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="值班时间" prop="dutyTime">
|
||
|
|
<el-date-picker clearable v-model="form.dutyTime" type="date" value-format="yyyy-MM-dd" placeholder="请选择值班时间"
|
||
|
|
style="width: 100%;">
|
||
|
|
</el-date-picker>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="值班人" prop="dutyUserName">
|
||
|
|
<el-input v-model="form.dutyUserName" placeholder="请输入值班人" disabled/>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="填报人名称" prop="fdyName">
|
||
|
|
<el-input v-model="form.fdyName" placeholder="请输入填报人名称" disabled/>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="填报年份" prop="fillingYear">
|
||
|
|
<el-select v-model="form.fillingYear" placeholder="请选择填报年份" style="width: 100%;">
|
||
|
|
<el-option v-for="dict in dict.type.sys_teacher_kpi_filling_year" :key="dict.value" :label="dict.label"
|
||
|
|
:value="dict.value"></el-option>
|
||
|
|
</el-select>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="填报月份" prop="fillingMonth">
|
||
|
|
<el-select v-model="form.fillingMonth" placeholder="请选择填报月份" style="width: 100%;">
|
||
|
|
<el-option v-for="dict in dict.type.sys_teacher_kpi_filling_month" :key="dict.value" :label="dict.label"
|
||
|
|
:value="dict.value"></el-option>
|
||
|
|
</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 { listKpiFillingRewardsKpi, getKpiFillingRewardsKpi, delKpiFillingRewardsKpi, addKpiFillingRewardsKpi, updateKpiFillingRewardsKpi } from "@/api/teacher/kpiFillingRewardsKpi";
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: "KpiFillingRewardsKpi",
|
||
|
|
dicts: ['sys_teacher_kpi_filling_month', 'sys_teacher_kpi_filling_year'],
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
// 遮罩层
|
||
|
|
loading: true,
|
||
|
|
// 选中数组
|
||
|
|
ids: [],
|
||
|
|
// 非单个禁用
|
||
|
|
single: true,
|
||
|
|
// 非多个禁用
|
||
|
|
multiple: true,
|
||
|
|
// 显示搜索条件
|
||
|
|
showSearch: true,
|
||
|
|
// 总条数
|
||
|
|
total: 0,
|
||
|
|
// 业绩考核-个人填报-超工作量奖励绩效表格数据
|
||
|
|
kpiFillingRewardsKpiList: [],
|
||
|
|
// 弹出层标题
|
||
|
|
title: "",
|
||
|
|
// 是否显示弹出层
|
||
|
|
open: false,
|
||
|
|
// 查询参数
|
||
|
|
queryParams: {
|
||
|
|
pageNum: 1,
|
||
|
|
pageSize: 10,
|
||
|
|
dutyDescription: null,
|
||
|
|
dutyTime: null,
|
||
|
|
dutyUserName: null,
|
||
|
|
fdyName: null,
|
||
|
|
fillingYear: null,
|
||
|
|
fillingMonth: null
|
||
|
|
},
|
||
|
|
// 表单参数
|
||
|
|
form: {},
|
||
|
|
// 表单校验
|
||
|
|
rules: {
|
||
|
|
dutyDescription: [
|
||
|
|
{ required: true, message: "值班说明不能为空", trigger: "blur" }
|
||
|
|
],
|
||
|
|
dutyTime: [
|
||
|
|
{ required: true, message: "值班时间不能为空", trigger: "blur" }
|
||
|
|
],
|
||
|
|
dutyUserName: [
|
||
|
|
{ required: true, message: "值班人不能为空", trigger: "blur" }
|
||
|
|
],
|
||
|
|
fdyName: [
|
||
|
|
{ required: true, message: "填报人名称不能为空", trigger: "blur" }
|
||
|
|
],
|
||
|
|
fillingYear: [
|
||
|
|
{ required: true, message: "填报年份不能为空", trigger: "change" }
|
||
|
|
],
|
||
|
|
fillingMonth: [
|
||
|
|
{ required: true, message: "填报月份不能为空", trigger: "change" }
|
||
|
|
]
|
||
|
|
}
|
||
|
|
};
|
||
|
|
},
|
||
|
|
created() {
|
||
|
|
this.getList();
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
/** 查询业绩考核-个人填报-超工作量奖励绩效列表 */
|
||
|
|
getList() {
|
||
|
|
this.loading = true;
|
||
|
|
listKpiFillingRewardsKpi(this.queryParams).then(response => {
|
||
|
|
this.kpiFillingRewardsKpiList = response.rows;
|
||
|
|
this.total = response.total;
|
||
|
|
this.loading = false;
|
||
|
|
});
|
||
|
|
},
|
||
|
|
// 取消按钮
|
||
|
|
cancel() {
|
||
|
|
this.open = false;
|
||
|
|
this.reset();
|
||
|
|
},
|
||
|
|
// 表单重置
|
||
|
|
reset() {
|
||
|
|
this.form = {
|
||
|
|
id: null,
|
||
|
|
dutyDescription: null,
|
||
|
|
dutyTime: null,
|
||
|
|
dutyUserName: null,
|
||
|
|
fdyName: null,
|
||
|
|
fillingYear: null,
|
||
|
|
fillingMonth: 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
|
||
|
|
getKpiFillingRewardsKpi(id).then(response => {
|
||
|
|
this.form = response.data;
|
||
|
|
this.open = true;
|
||
|
|
this.title = "修改业绩考核-个人填报-超工作量奖励绩效";
|
||
|
|
});
|
||
|
|
},
|
||
|
|
/** 提交按钮 */
|
||
|
|
submitForm() {
|
||
|
|
this.$refs["form"].validate(valid => {
|
||
|
|
if (valid) {
|
||
|
|
// 检查表单中是否有空字符串
|
||
|
|
let hasEmptyString = Object.values(this.form).some(value => {
|
||
|
|
return (value !== null && value !== undefined && (typeof value === 'string' ? value.trim() === '' : false));
|
||
|
|
});
|
||
|
|
|
||
|
|
if (hasEmptyString) {
|
||
|
|
this.$modal.msgError("表单中存在空字符串,请填写完整");
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
if (this.form.id != null) {
|
||
|
|
updateKpiFillingRewardsKpi(this.form).then(response => {
|
||
|
|
this.$modal.msgSuccess("修改成功");
|
||
|
|
this.open = false;
|
||
|
|
this.getList();
|
||
|
|
});
|
||
|
|
} else {
|
||
|
|
addKpiFillingRewardsKpi(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 delKpiFillingRewardsKpi(ids);
|
||
|
|
}).then(() => {
|
||
|
|
this.getList();
|
||
|
|
this.$modal.msgSuccess("删除成功");
|
||
|
|
}).catch(() => { });
|
||
|
|
},
|
||
|
|
/** 导出按钮操作 */
|
||
|
|
handleExport() {
|
||
|
|
this.download('teacher/kpiFillingRewardsKpi/export', {
|
||
|
|
...this.queryParams
|
||
|
|
}, `kpiFillingRewardsKpi_${new Date().getTime()}.xlsx`)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
</script>
|