2023-05-06 18:09:41 +08:00
|
|
|
|
<template>
|
|
|
|
|
<n-space justify="center">
|
|
|
|
|
<h1>其他职能部门网格化工作考核细则(以季度为考核周期)</h1>
|
|
|
|
|
</n-space>
|
|
|
|
|
<n-space class="container" vertical>
|
|
|
|
|
<n-space class="search" vertical>
|
|
|
|
|
<n-grid :cols="7" :x-gap="10">
|
|
|
|
|
<n-grid-item>
|
|
|
|
|
<n-select placeholder="请选择街道" v-model:value="search.select.street.value"
|
|
|
|
|
:options="search.select.street.options" :clearable="true" />
|
|
|
|
|
</n-grid-item>
|
|
|
|
|
<n-grid-item>
|
|
|
|
|
<n-select placeholder="请选择社区" v-model:value="search.select.community.value"
|
|
|
|
|
:options="search.select.community.options" :clearable="true" />
|
|
|
|
|
</n-grid-item>
|
|
|
|
|
<n-grid-item>
|
|
|
|
|
<n-input v-model:value="search.input.keywords" type="text" placeholder="姓名|手机号" />
|
|
|
|
|
</n-grid-item>
|
|
|
|
|
<n-grid-item>
|
|
|
|
|
<n-select placeholder="请选择年份" v-model:value="search.select.year.value"
|
|
|
|
|
:options="search.select.year.options" :clearable="true" />
|
|
|
|
|
</n-grid-item>
|
|
|
|
|
<n-grid-item>
|
|
|
|
|
<n-select placeholder="请选择月份" v-model:value="search.select.month.value"
|
|
|
|
|
:options="search.select.month.options" :clearable="true" />
|
|
|
|
|
</n-grid-item>
|
|
|
|
|
<n-grid-item>
|
|
|
|
|
<n-space>
|
|
|
|
|
<n-button type="primary">搜索</n-button>
|
|
|
|
|
<n-button type="info">导出</n-button>
|
|
|
|
|
</n-space>
|
|
|
|
|
</n-grid-item>
|
|
|
|
|
</n-grid>
|
|
|
|
|
</n-space>
|
|
|
|
|
<n-space class="body">
|
|
|
|
|
<n-data-table size="small" :columns="table.columns" :data="table.data" :bordered="true" :single-line="false"
|
|
|
|
|
:min-height="table.minHeight" :max-height="table.maxHeight" :scroll-x="table.scrollX" />
|
|
|
|
|
</n-space>
|
|
|
|
|
</n-space>
|
|
|
|
|
<n-modal preset="dialog" style="width: 600px" :title="`【${modal.scoring.userName}】${modal.scoring.title}打分`"
|
|
|
|
|
:show="modal.scoring.show" :show-icon="false" :mask-closable="true" :closable="false"
|
|
|
|
|
:on-update-show="onScroingCloseClick">
|
|
|
|
|
<scoring :row-key="modal.scoring.rowKey" :row-index="modal.scoring.rowIndex" :score="modal.scoring.score"
|
|
|
|
|
:reason="modal.scoring.reason" :min-score="modal.scoring.minScore" :max-score="modal.scoring.maxScore"
|
|
|
|
|
@confirm="onScroingConfimClick" />
|
|
|
|
|
</n-modal>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { h } from 'vue';
|
|
|
|
|
import {
|
|
|
|
|
NSpace,
|
|
|
|
|
NGrid,
|
|
|
|
|
NGridItem,
|
|
|
|
|
NSelect,
|
|
|
|
|
NRadio,
|
|
|
|
|
NInput,
|
|
|
|
|
NButton,
|
|
|
|
|
NDataTable,
|
|
|
|
|
NModal,
|
|
|
|
|
} from 'naive-ui';
|
|
|
|
|
import Scoring from '../common/Scoring.vue';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'Znbm',
|
|
|
|
|
components: {
|
|
|
|
|
NSpace,
|
|
|
|
|
NGrid,
|
|
|
|
|
NGridItem,
|
|
|
|
|
NSelect,
|
|
|
|
|
NRadio,
|
|
|
|
|
NInput,
|
|
|
|
|
NButton,
|
|
|
|
|
NDataTable,
|
|
|
|
|
NModal,
|
|
|
|
|
|
|
|
|
|
Scoring,
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
let vueSelf = this;
|
|
|
|
|
return {
|
|
|
|
|
search: {
|
|
|
|
|
select: {
|
|
|
|
|
street: {
|
|
|
|
|
value: null,
|
|
|
|
|
options: [
|
|
|
|
|
{ label: '稀土路街道', value: 'xtl' }
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
community: {
|
|
|
|
|
value: null,
|
|
|
|
|
options: [
|
|
|
|
|
{ label: '社区', value: 'sq' }
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
year: {
|
|
|
|
|
value: null,
|
|
|
|
|
options: [
|
|
|
|
|
{ label: '2023年', value: '2023' }
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
month: {
|
|
|
|
|
value: null,
|
|
|
|
|
options: [
|
|
|
|
|
{ label: '1月', value: '1' }
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
radio: {
|
|
|
|
|
level: {
|
|
|
|
|
value: 5,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
input: {
|
|
|
|
|
keywords: ''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
table: {
|
|
|
|
|
minHeight: 300,
|
|
|
|
|
maxHeight: 300,
|
|
|
|
|
scrollX: 900,
|
|
|
|
|
columns: [
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '序号',
|
|
|
|
|
key: 'A',
|
|
|
|
|
keyName: 'key',
|
|
|
|
|
fixed: 'left',
|
|
|
|
|
width: 60
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '姓名',
|
|
|
|
|
key: 'B',
|
|
|
|
|
keyName: 'name',
|
|
|
|
|
fixed: 'left',
|
|
|
|
|
width: 140
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '案件受理数量',
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '案件办理得分与奖励金额',
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '案件总数',
|
|
|
|
|
key: 'C',
|
|
|
|
|
keyName: 'caseCount',
|
|
|
|
|
width: 60,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '办结并验收',
|
|
|
|
|
key: 'D',
|
|
|
|
|
keyName: 'handleCheck',
|
|
|
|
|
width: 60,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '办结未验收',
|
|
|
|
|
key: 'E',
|
|
|
|
|
keyName: 'handleUnCheck',
|
|
|
|
|
width: 60,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '案件积分奖励(元)',
|
|
|
|
|
key: 'F',
|
|
|
|
|
keyName: 'reward',
|
|
|
|
|
width: 60,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '得分',
|
|
|
|
|
key: 'G',
|
|
|
|
|
keyName: 'score',
|
|
|
|
|
width: 60,
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '案件受理数量及过程质量',
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '未在规定的时限内退单,影响处置时效',
|
|
|
|
|
key: 'H',
|
|
|
|
|
keyName: 'unBackError',
|
|
|
|
|
width: 60,
|
|
|
|
|
render(row, index) {
|
|
|
|
|
return h('a', {
|
|
|
|
|
href: 'javascript:void(0);',
|
|
|
|
|
onClick() {
|
|
|
|
|
vueSelf.onUnBackErrorClick(row, index);
|
|
|
|
|
}
|
|
|
|
|
}, row.H);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '自行上报案件没完成',
|
|
|
|
|
key: 'I',
|
|
|
|
|
keyName: 'selfReportUnComplete',
|
|
|
|
|
width: 60,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '自行上报案件没完成扣分',
|
|
|
|
|
key: 'J',
|
|
|
|
|
keyName: 'selfReportUnCompleteDeduct',
|
|
|
|
|
width: 60,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '其他情况',
|
|
|
|
|
key: 'K',
|
|
|
|
|
keyName: 'others',
|
|
|
|
|
width: 60,
|
|
|
|
|
render(row, index) {
|
|
|
|
|
return h('a', {
|
|
|
|
|
href: 'javascript:void(0);',
|
|
|
|
|
onClick() {
|
|
|
|
|
vueSelf.onOthersClick(row, index);
|
|
|
|
|
}
|
|
|
|
|
}, row.K);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '案件处置实效',
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '处理情况',
|
|
|
|
|
key: 'L',
|
|
|
|
|
keyName: 'handleResult',
|
|
|
|
|
width: 60,
|
|
|
|
|
render(row, index) {
|
|
|
|
|
return h('a', {
|
|
|
|
|
href: 'javascript:void(0);',
|
|
|
|
|
onClick() {
|
|
|
|
|
vueSelf.onHandleResultClick(row, index);
|
|
|
|
|
}
|
|
|
|
|
}, row.L);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '督察案件',
|
|
|
|
|
key: 'M',
|
|
|
|
|
keyName: 'superviseResult',
|
|
|
|
|
width: 60,
|
|
|
|
|
render(row, index) {
|
|
|
|
|
return h('a', {
|
|
|
|
|
href: 'javascript:void(0);',
|
|
|
|
|
onClick() {
|
|
|
|
|
vueSelf.onSuperviseResultClick(row, index);
|
|
|
|
|
}
|
|
|
|
|
}, row.M);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '总得分',
|
|
|
|
|
key: 'N',
|
|
|
|
|
keyName: 'totalScore',
|
|
|
|
|
fixed: 'right',
|
2023-05-09 22:02:21 +08:00
|
|
|
|
width: 60,
|
2023-05-06 18:09:41 +08:00
|
|
|
|
render(row, index) {
|
|
|
|
|
return vueSelf.computeN(row);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '应发绩效工资',
|
|
|
|
|
key: 'O',
|
|
|
|
|
keyName: 'shouldPay',
|
|
|
|
|
fixed: 'right',
|
2023-05-09 22:02:21 +08:00
|
|
|
|
width: 60
|
2023-05-06 18:09:41 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
align: 'center',
|
|
|
|
|
title: '实发绩效工资',
|
|
|
|
|
key: 'P',
|
|
|
|
|
keyName: 'actualPay',
|
|
|
|
|
fixed: 'right',
|
2023-05-09 22:02:21 +08:00
|
|
|
|
width: 60,
|
2023-05-06 18:09:41 +08:00
|
|
|
|
render(row, index) {
|
|
|
|
|
return vueSelf.computeN(row) * row.O / 100;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
data: []
|
|
|
|
|
},
|
|
|
|
|
modal: {
|
|
|
|
|
scoring: {
|
|
|
|
|
show: false,
|
|
|
|
|
userName: null,
|
|
|
|
|
title: null,
|
|
|
|
|
rowKey: null,
|
|
|
|
|
rowIndex: null,
|
|
|
|
|
score: 0,
|
|
|
|
|
reason: '',
|
|
|
|
|
minScore: null,
|
|
|
|
|
maxScore: null
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
// 打分确定
|
|
|
|
|
onScroingConfimClick(key, index, { score, reason, userId, userName, date }) {
|
|
|
|
|
this.modal.scoring.show = false;
|
|
|
|
|
this.table.data[index][key] = score;
|
|
|
|
|
this.table.data[index][`reason${key}`] = reason;
|
|
|
|
|
},
|
|
|
|
|
// 打分关闭
|
|
|
|
|
onScroingCloseClick() {
|
|
|
|
|
this.modal.scoring.show = false;
|
|
|
|
|
},
|
|
|
|
|
// 未在规定的时限内退单,影响处置时效 -
|
|
|
|
|
onUnBackErrorClick(row, index) {
|
|
|
|
|
let unBackError = row.H;
|
|
|
|
|
this.modal.scoring.show = true;
|
|
|
|
|
this.modal.scoring.rowKey = 'J';
|
|
|
|
|
this.modal.scoring.rowIndex = index;
|
|
|
|
|
this.modal.scoring.score = unBackError;
|
|
|
|
|
this.modal.scoring.reason = row.reasonH;
|
|
|
|
|
this.modal.scoring.maxScore = null;
|
|
|
|
|
this.modal.scoring.minScore = null;
|
|
|
|
|
this.modal.scoring.userName = row.B;
|
|
|
|
|
this.modal.scoring.title = '未在规定的时限内退单,影响处置时效';
|
|
|
|
|
},
|
|
|
|
|
// 自行上报案件没完成扣分 -
|
|
|
|
|
onOthersClick(row, index) {
|
|
|
|
|
let handleResult = row.K;
|
|
|
|
|
this.modal.scoring.show = true;
|
|
|
|
|
this.modal.scoring.rowKey = 'K';
|
|
|
|
|
this.modal.scoring.rowIndex = index;
|
|
|
|
|
this.modal.scoring.score = handleResult;
|
|
|
|
|
this.modal.scoring.reason = row.reasonK;
|
|
|
|
|
this.modal.scoring.maxScore = null;
|
|
|
|
|
this.modal.scoring.minScore = null;
|
|
|
|
|
this.modal.scoring.userName = row.B;
|
|
|
|
|
this.modal.scoring.title = '自行上报案件没完成扣分';
|
|
|
|
|
},
|
|
|
|
|
// 处理情况 -
|
|
|
|
|
onHandleResultClick(row, index) {
|
|
|
|
|
let others = row.L;
|
|
|
|
|
this.modal.scoring.show = true;
|
|
|
|
|
this.modal.scoring.rowKey = 'L';
|
|
|
|
|
this.modal.scoring.rowIndex = index;
|
|
|
|
|
this.modal.scoring.score = others;
|
|
|
|
|
this.modal.scoring.reason = row.reasonL;
|
|
|
|
|
this.modal.scoring.maxScore = null;
|
|
|
|
|
this.modal.scoring.minScore = null;
|
|
|
|
|
this.modal.scoring.userName = row.B;
|
|
|
|
|
this.modal.scoring.title = '处理情况';
|
|
|
|
|
},
|
|
|
|
|
// 督察案件 -
|
|
|
|
|
onSuperviseResultClick(row, index) {
|
|
|
|
|
let superviseResult = row.M;
|
|
|
|
|
this.modal.scoring.show = true;
|
|
|
|
|
this.modal.scoring.rowKey = 'M';
|
|
|
|
|
this.modal.scoring.rowIndex = index;
|
|
|
|
|
this.modal.scoring.score = superviseResult;
|
|
|
|
|
this.modal.scoring.reason = row.reasonM;
|
|
|
|
|
this.modal.scoring.maxScore = null;
|
|
|
|
|
this.modal.scoring.minScore = null;
|
|
|
|
|
this.modal.scoring.userName = row.B;
|
|
|
|
|
this.modal.scoring.title = '督察案件';
|
|
|
|
|
},
|
|
|
|
|
computeN(row) {
|
|
|
|
|
return row.G - row.H - row.J - row.K + row.L + row.M;
|
|
|
|
|
},
|
|
|
|
|
listTestData() {
|
|
|
|
|
let data = [];
|
|
|
|
|
for (let i = 0; i < 100; i++) {
|
|
|
|
|
let d = {
|
|
|
|
|
userId: 'userId',
|
|
|
|
|
key: i + 1,
|
|
|
|
|
name: i + 'name',
|
|
|
|
|
caseCount: i,
|
|
|
|
|
handleCheck: Math.floor(Math.random() * 100),
|
|
|
|
|
handleUnCheck: 30,
|
|
|
|
|
reward: 2,
|
|
|
|
|
unBackError: Math.floor(Math.random() * 10),
|
|
|
|
|
reasonUnBackError: '',
|
|
|
|
|
selfReportUnComplete: Math.floor(Math.random() * 10),
|
|
|
|
|
selfReportUnCompleteDeduct: Math.floor(Math.random() * 10),
|
|
|
|
|
others: Math.floor(Math.random() * 10),
|
|
|
|
|
reasonOthers: '',
|
|
|
|
|
handleResult: Math.floor(Math.random() * 10),
|
|
|
|
|
reasonHandleResult: '',
|
|
|
|
|
superviseResult: Math.floor(Math.random() * 10),
|
|
|
|
|
reasonSuperviseResult: '',
|
|
|
|
|
totalScore: Math.floor(Math.random() * 10),
|
|
|
|
|
shouldPay: Math.floor(Math.random() * 10),
|
|
|
|
|
actualPay: Math.floor(Math.random() * 10),
|
|
|
|
|
}
|
|
|
|
|
data.push({
|
|
|
|
|
A: d.key,
|
|
|
|
|
B: d.name,
|
|
|
|
|
C: d.caseCount,
|
|
|
|
|
D: d.handleCheck,
|
|
|
|
|
E: d.handleUnCheck,
|
|
|
|
|
F: d.reward,
|
|
|
|
|
G: d.unBackError,
|
|
|
|
|
reasonG: d.reasonUnBackError,
|
|
|
|
|
H: d.selfReportUnComplete,
|
|
|
|
|
I: d.selfReportUnCompleteDeduct,
|
|
|
|
|
J: d.others,
|
|
|
|
|
reasonJ: d.reasonOthers,
|
|
|
|
|
K: d.handleResult,
|
2023-05-09 22:02:21 +08:00
|
|
|
|
reasonK: d.reasonHandleResult,
|
2023-05-06 18:09:41 +08:00
|
|
|
|
L: d.superviseResult,
|
2023-05-09 22:02:21 +08:00
|
|
|
|
reasonL: d.reasonSuperviseResult,
|
2023-05-06 18:09:41 +08:00
|
|
|
|
M: d.superviseResult,
|
|
|
|
|
reasonM: d.reasonSuperviseResult,
|
|
|
|
|
N: d.totalScore,
|
|
|
|
|
O: d.shouldPay,
|
|
|
|
|
P: d.actualPay,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
this.table.data = data;
|
|
|
|
|
},
|
|
|
|
|
resize() {
|
|
|
|
|
let body = document.body;
|
|
|
|
|
this.table.minHeight = body.clientHeight - 378;
|
|
|
|
|
this.table.maxHeight = body.clientHeight - 378;
|
|
|
|
|
this.table.scrollX = body.clientWidth;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
let vueSelf = this;
|
|
|
|
|
vueSelf.listTestData();
|
|
|
|
|
vueSelf.resize();
|
|
|
|
|
window.onresize = this.resize
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
|
.container
|
|
|
|
|
padding 0 10px
|
|
|
|
|
:deep(.score-plus)
|
|
|
|
|
background-color yellow
|
|
|
|
|
:deep(.score-minus)
|
|
|
|
|
background-color red
|
|
|
|
|
</style>
|