|
@@ -315,7 +315,7 @@ export default {
|
|
|
handleAdd() {
|
|
|
this.reset();
|
|
|
this.open = true;
|
|
|
- this.title = "添加军事训练月统计班";
|
|
|
+ this.title = "添加军事训练月统计表";
|
|
|
},
|
|
|
/** 修改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
@@ -324,7 +324,7 @@ export default {
|
|
|
getStatistics(id).then((response) => {
|
|
|
this.form = response.data;
|
|
|
this.open = true;
|
|
|
- this.title = "修改军事训练月统计班";
|
|
|
+ this.title = "修改军事训练月统计表";
|
|
|
});
|
|
|
},
|
|
|
//查看按钮操作
|
|
@@ -362,7 +362,7 @@ export default {
|
|
|
handleDelete(row) {
|
|
|
const ids = row.id || this.ids;
|
|
|
this.$modal
|
|
|
- .confirm('是否确认删除军事训练月统计班编号为"' + ids + '"的数据项?')
|
|
|
+ .confirm('是否确认删除军事训练月统计表编号为"' + ids + '"的数据项?')
|
|
|
.then(function () {
|
|
|
return delStatistics(ids);
|
|
|
})
|
|
@@ -376,7 +376,7 @@ export default {
|
|
|
handleExport() {
|
|
|
const queryParams = this.queryParams;
|
|
|
this.$modal
|
|
|
- .confirm("是否确认导出所有军事训练月统计班数据项?")
|
|
|
+ .confirm("是否确认导出所有军事训练月统计表数据项?")
|
|
|
.then(() => {
|
|
|
this.exportLoading = true;
|
|
|
return exportStatistics(queryParams);
|