Commit 063f625a authored by 姬鋆屾's avatar 姬鋆屾

推绩效核查的自评绩效核查信息

parent f7abc40a
...@@ -66,7 +66,6 @@ export default { ...@@ -66,7 +66,6 @@ export default {
}, },
// 切换表格 // 切换表格
changeRadio() { changeRadio() {
console.log(this.radio1);
this.radio1 == 2 this.radio1 == 2
? this.$router.push("/check/window/workman/perform/list?page=1") ? this.$router.push("/check/window/workman/perform/list?page=1")
: ""; : "";
...@@ -98,37 +97,50 @@ export default { ...@@ -98,37 +97,50 @@ export default {
fuzzy: false, fuzzy: false,
}, },
{ {
name: "staffName", name: "ownerName",
type: "text", type: "text",
label: "请输入窗口负责人姓名搜索", width: 200,
label: "窗口负责人姓名搜索",
fuzzy: false, fuzzy: false,
}, },
], ],
columns: [ columns: [
{ type: "selection", width: 60 }, { type: "selection", width: 60 },
{ type: "index", label: "序号", width: 50 }, { type: "index", label: "序号", width: 50 },
{ label: "窗口负责人", prop: "ownerName" },
{ {
label: "管理组核查时间", label: "登记年月",
prop: "manageCheckTime", formatter: (row) => {
formatter: this.formatterDate, return `${row.year ? row.year : "--"}-${
row.month
? [1, 2, 3, 4, 5, 6, 7, 8, 9].includes(row.month)
? "0" + row.month
: row.month
: "--"
}`;
},
}, },
{ label: "管理组核查说明", prop: "manageCheckDesc" }, { label: "所属大厅", prop: "salaName" },
{ label: "管理组核查结果", prop: "manageCheckResult" },
{ {
label: "领导组核查时间", label: "所属部门",
prop: "leaderCheckTime", prop: "deptName",
formatter: this.formatterDate,
}, },
{ label: "领导组核查说明", prop: "leaderCheckDesc" }, { label: "考核窗口", prop: "windowName" },
{ label: "领导组核查结果", prop: "leaderCheckResult" }, { label: "表单名称", prop: "fromName" },
{ label: "总分分值", prop: "sumScore", formatter: this.formatter },
{
label: "提交时间",
prop: "submitDate",
formatter: this.formatterDate,
},
{ label: "处理状态", prop: "checkStatus", formatter: this.formatter }, { label: "处理状态", prop: "checkStatus", formatter: this.formatter },
{ {
label: "操作", label: "操作",
width: 240, width: 240,
...@@ -136,6 +148,10 @@ export default { ...@@ -136,6 +148,10 @@ export default {
return ( return (
<table-buttons <table-buttons
noAdd noAdd
noDel
noEdit
reCheck
text={"自评核查"}
row={row} row={row}
onEdit={this.toEdit} onEdit={this.toEdit}
onView={this.toView} onView={this.toView}
......
...@@ -98,25 +98,57 @@ export default { ...@@ -98,25 +98,57 @@ export default {
fuzzy: false, fuzzy: false,
}, },
{ {
name: "staffName", name: "ownerName",
type: "text", type: "text",
label: "请输入窗口负责人姓名搜索", width: 200,
label: "窗口负责人姓名搜索",
fuzzy: false, fuzzy: false,
}, },
], ],
columns: [ columns: [
{ type: "selection", width: 60 }, { type: "selection", width: 60 },
{ type: "index", label: "序号", width: 50 }, { type: "index", label: "序号", width: 50 },
{ label: "窗口负责人", prop: "ownerName" },
{ {
label: "管理组核查时间", label: "登记年月",
prop: "manageCheckTime", formatter: (row) => {
formatter: this.formatterDate, return `${row.year ? row.year : "--"}-${
row.month
? [1, 2, 3, 4, 5, 6, 7, 8, 9].includes(row.month)
? "0" + row.month
: row.month
: "--"
}`;
},
},
{ label: "所属大厅", prop: "salaName" },
{
label: "所属部门",
prop: "deptName",
}, },
{ label: "管理组核查说明", prop: "manageCheckDesc" }, { label: "考核窗口", prop: "windowName" },
{ label: "表单名称", prop: "fromName" },
{ label: "总分分值", prop: "sumScore", formatter: this.formatter },
{
label: "提交时间",
prop: "submitDate",
width: 110,
formatter: this.formatterDate,
},
{
label: "最新核查时间",
prop: "updateTime",
width: 150,
formatter: this.formatterDate,
},
{ label: "处理状态", prop: "checkStatus", formatter: this.formatter },
{ label: "管理组核查结果", prop: "manageCheckResult" },
{ {
label: "操作", label: "操作",
width: 240, width: 240,
...@@ -124,6 +156,10 @@ export default { ...@@ -124,6 +156,10 @@ export default {
return ( return (
<table-buttons <table-buttons
noAdd noAdd
noDel
noEdit
reCheck
text={"自评核查"}
row={row} row={row}
onEdit={this.toEdit} onEdit={this.toEdit}
onView={this.toView} onView={this.toView}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment