|
|
@@ -249,7 +249,7 @@ export default {
|
|
|
showSearch: true,
|
|
|
// 总条数
|
|
|
total: 0,
|
|
|
- // 岗位表格数据
|
|
|
+ // 表格数据
|
|
|
StampList: [],
|
|
|
// 弹出层标题
|
|
|
title: "",
|
|
|
@@ -349,7 +349,7 @@ export default {
|
|
|
this.getEmployee();
|
|
|
this.singlePeopleOpen = false;
|
|
|
},
|
|
|
- /** 查询岗位列表 */
|
|
|
+ /** 查询列表 */
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
listStamp(this.queryParams).then(response => {
|
|
|
@@ -392,7 +392,7 @@ export default {
|
|
|
handleAdd() {
|
|
|
this.reset();
|
|
|
this.open = true;
|
|
|
- this.title = "添加岗位";
|
|
|
+ this.title = "添加";
|
|
|
},
|
|
|
handleRemove(file, fileList) {
|
|
|
console.log(file, fileList);
|
|
|
@@ -453,7 +453,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
this.open = true;
|
|
|
- this.title = "修改岗位";
|
|
|
+ this.title = "修改";
|
|
|
});
|
|
|
},
|
|
|
/** 详情按钮操作 */
|
|
|
@@ -491,7 +491,7 @@ export default {
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|
|
|
const ids = row.id;
|
|
|
- this.$modal.confirm('是否确认删除岗位编号为"' + ids + '"的数据项?').then(function () {
|
|
|
+ this.$modal.confirm('是否确认删除数据项?').then(function () {
|
|
|
return delStamp(ids);
|
|
|
}).then(() => {
|
|
|
this.getList();
|
|
|
@@ -501,11 +501,11 @@ export default {
|
|
|
/** 导出按钮操作 */
|
|
|
handleExport() {
|
|
|
const queryParams = this.queryParams;
|
|
|
- this.$modal.confirm('是否确认导出所有岗位数据项?').then(() => {
|
|
|
+ this.$modal.confirm('是否确认导出所有数据项?').then(() => {
|
|
|
this.exportLoading = true;
|
|
|
return exportStamp(queryParams);
|
|
|
}).then(response => {
|
|
|
- this.$download.excel(response, '岗位数据.xls');
|
|
|
+ this.$download.excel(response, '用印数据.xls');
|
|
|
this.exportLoading = false;
|
|
|
}).catch(() => { });
|
|
|
}
|