Commit fee608c5 authored by 姬鋆屾's avatar 姬鋆屾

提交

parent fa2fb4ad
...@@ -215,7 +215,7 @@ export const download = (url, formData, config = {}) => { ...@@ -215,7 +215,7 @@ export const download = (url, formData, config = {}) => {
extName = "xlsx"; extName = "xlsx";
} }
let fileName = "导出"; let fileName = config.name ? config.name + "导出" : "导出";
if (option.fileName) { if (option.fileName) {
fileName = option.fileName; fileName = option.fileName;
} }
......
...@@ -57,7 +57,7 @@ export default { ...@@ -57,7 +57,7 @@ export default {
startTimeEnd: this.query.startTimeEnd, startTimeEnd: this.query.startTimeEnd,
startTimeStart: this.query.startTimeStart, startTimeStart: this.query.startTimeStart,
}, },
{ type: "excel" } { type: "excel", name: "请假记录" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -77,7 +77,7 @@ export default { ...@@ -77,7 +77,7 @@ export default {
{ {
...params, ...params,
}, },
{ type: "excel" } { type: "excel", name: "异常处理" }
) )
.then(() => { .then(() => {
this.percent = 100; this.percent = 100;
......
...@@ -284,7 +284,7 @@ export default { ...@@ -284,7 +284,7 @@ export default {
this.$download( this.$download(
"/attendance/record/hik/downloadTemplate", "/attendance/record/hik/downloadTemplate",
{}, {},
{ type: "excel" } { type: "excel", name: "打卡记录统计" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
...@@ -326,7 +326,7 @@ export default { ...@@ -326,7 +326,7 @@ export default {
{ {
...params, ...params,
}, },
{ type: "excel" } { type: "excel", name: "打卡记录统计" }
) )
.then(() => { .then(() => {
this.percent = 100; this.percent = 100;
......
...@@ -375,7 +375,7 @@ export default { ...@@ -375,7 +375,7 @@ export default {
this.$download( this.$download(
"/attendance/record/downloadTemplate", "/attendance/record/downloadTemplate",
{}, {},
{ type: "excel" } { type: "excel", name: "每日打卡记录" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
...@@ -418,7 +418,7 @@ export default { ...@@ -418,7 +418,7 @@ export default {
{ {
...params, ...params,
}, },
{ type: "excel" } { type: "excel", name: "每日打卡记录" }
) )
.then((res) => { .then((res) => {
this.percent = 100; this.percent = 100;
......
...@@ -541,7 +541,7 @@ export default { ...@@ -541,7 +541,7 @@ export default {
{ {
...params, ...params,
}, },
{ type: "excel" } { type: "excel", name: "考勤汇总" }
) )
.then(() => { .then(() => {
this.isExport = false; this.isExport = false;
......
...@@ -44,7 +44,7 @@ export default { ...@@ -44,7 +44,7 @@ export default {
{ {
...params, ...params,
}, },
{ type: "excel" } { type: "excel", name: "员工假期余额" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -128,7 +128,7 @@ export default { ...@@ -128,7 +128,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "考勤绩效记录核查信息" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -128,7 +128,7 @@ export default { ...@@ -128,7 +128,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "评价绩效投诉核查信息" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -129,7 +129,7 @@ export default { ...@@ -129,7 +129,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "效能绩效核查信息" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -128,7 +128,7 @@ export default { ...@@ -128,7 +128,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "办件绩效核查信息" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -128,7 +128,7 @@ export default { ...@@ -128,7 +128,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "其他绩效核查信息" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -128,7 +128,7 @@ export default { ...@@ -128,7 +128,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "评价差评绩效核查信息" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -58,7 +58,7 @@ export default { ...@@ -58,7 +58,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "窗口考核" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -49,7 +49,7 @@ export default { ...@@ -49,7 +49,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "工作人员一张表" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -59,7 +59,7 @@ export default { ...@@ -59,7 +59,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "工作人员考核" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -135,7 +135,7 @@ export default { ...@@ -135,7 +135,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "考勤绩效管理" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -135,7 +135,7 @@ export default { ...@@ -135,7 +135,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "投诉绩效管理" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
...@@ -222,7 +222,7 @@ export default { ...@@ -222,7 +222,7 @@ export default {
{ label: "窗口编号", prop: "windowNum", formatter: this.formatter }, { label: "窗口编号", prop: "windowNum", formatter: this.formatter },
{ label: "所属大厅", prop: "salaName",formatter: this.formatter }, { label: "所属大厅", prop: "salaName", formatter: this.formatter },
{ label: "所属部门", prop: "deptName", formatter: this.formatter }, { label: "所属部门", prop: "deptName", formatter: this.formatter },
......
...@@ -136,7 +136,7 @@ export default { ...@@ -136,7 +136,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "效能绩效管理" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -135,7 +135,7 @@ export default { ...@@ -135,7 +135,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "办件绩效管理" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
...@@ -216,7 +216,7 @@ export default { ...@@ -216,7 +216,7 @@ export default {
{ label: "窗口编号", prop: "windowNum", formatter: this.formatter }, { label: "窗口编号", prop: "windowNum", formatter: this.formatter },
{ label: "所属大厅", prop: "salaName",formatter: this.formatter }, { label: "所属大厅", prop: "salaName", formatter: this.formatter },
{ label: "所属部门", prop: "deptName", formatter: this.formatter }, { label: "所属部门", prop: "deptName", formatter: this.formatter },
......
...@@ -135,7 +135,7 @@ export default { ...@@ -135,7 +135,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "其他绩效管理" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
...@@ -216,7 +216,7 @@ export default { ...@@ -216,7 +216,7 @@ export default {
{ label: "窗口编号", prop: "windowNum", formatter: this.formatter }, { label: "窗口编号", prop: "windowNum", formatter: this.formatter },
{ label: "所属大厅", prop: "salaName",formatter: this.formatter }, { label: "所属大厅", prop: "salaName", formatter: this.formatter },
{ label: "所属部门", prop: "deptName", formatter: this.formatter }, { label: "所属部门", prop: "deptName", formatter: this.formatter },
......
...@@ -135,7 +135,7 @@ export default { ...@@ -135,7 +135,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "差评绩效管理" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -113,7 +113,7 @@ export default { ...@@ -113,7 +113,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "绩效汇总" }
) )
.then(() => { .then(() => {
this.percent = 100; this.percent = 100;
...@@ -581,14 +581,19 @@ export default { ...@@ -581,14 +581,19 @@ export default {
// }, // },
{ {
label: "本月得分", label: "本月得分",
prop: "totalScore", prop: "totalScore",
sortable: true, sortable: true,
width: 120, width: 120,
}, },
{ label: "", prop: "year", formatter: this.formatter }, { label: "", prop: "year", formatter: this.formatter },
{ label: "", prop: "month", formatter: this.formatter }, { label: "", prop: "month", formatter: this.formatter },
{ label: "备注", prop: "remark", formatter: this.formatter, width: 240, }, {
label: "备注",
prop: "remark",
formatter: this.formatter,
width: 240,
},
{ {
label: "操作", label: "操作",
width: 120, width: 120,
......
...@@ -58,7 +58,7 @@ export default { ...@@ -58,7 +58,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "窗口考核" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
...@@ -58,7 +58,7 @@ export default { ...@@ -58,7 +58,7 @@ export default {
page: 1, page: 1,
size: -1, size: -1,
}, },
{ type: "excel" } { type: "excel", name: "工作人员考核" }
) )
.then(() => (this.isExport = false)) .then(() => (this.isExport = false))
.catch((error) => { .catch((error) => {
......
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