基础管理-班组

master
A0010407 1 year ago
parent 934045afe6
commit 8524e051e9

@ -322,10 +322,12 @@ export default {
} }
}; };
}, },
created() { created() {
this.getList(); this.getList();
this.getTeamMembers(); this.getTeamMembers();
}, },
methods: { methods: {
// //
indexMethod(index) { indexMethod(index) {
@ -349,6 +351,7 @@ export default {
this.loading = false; this.loading = false;
}); });
}, },
/** 查询班组列表 */ /** 查询班组列表 */
getList() { getList() {
this.loading = true; this.loading = true;
@ -358,11 +361,13 @@ export default {
this.loading = false; this.loading = false;
}); });
}, },
// //
cancel() { cancel() {
this.open = false; this.open = false;
this.reset(); this.reset();
}, },
// //
reset() { reset() {
this.form = { this.form = {
@ -392,22 +397,26 @@ export default {
}; };
this.resetForm("form"); this.resetForm("form");
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
handleQuery() { handleQuery() {
this.queryParams.pageNum = 1; this.queryParams.pageNum = 1;
this.getList(); this.getList();
}, },
/** 重置按钮操作 */ /** 重置按钮操作 */
resetQuery() { resetQuery() {
this.resetForm("queryForm"); this.resetForm("queryForm");
this.handleQuery(); this.handleQuery();
}, },
// //
handleSelectionChange(selection) { handleSelectionChange(selection) {
this.ids = selection.map(item => item.teamId) this.ids = selection.map(item => item.teamId)
this.single = selection.length!==1 this.single = selection.length!==1
this.multiple = !selection.length this.multiple = !selection.length
}, },
/** 新增按钮操作 */ /** 新增按钮操作 */
handleAdd() { handleAdd() {
this.reset(); this.reset();
@ -415,6 +424,7 @@ export default {
this.open = true; this.open = true;
this.title = "添加班组"; this.title = "添加班组";
}, },
/** 修改按钮操作 */ /** 修改按钮操作 */
handleUpdate(row) { handleUpdate(row) {
this.rightList = []; this.rightList = [];
@ -445,6 +455,7 @@ export default {
this.open = true; this.open = true;
this.title = "修改班组"; this.title = "修改班组";
}, },
/** 提交按钮 */ /** 提交按钮 */
submitForm() { submitForm() {
this.$refs["form"].validate(valid => { this.$refs["form"].validate(valid => {
@ -467,6 +478,7 @@ export default {
} }
}); });
}, },
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const teamIds = row.teamId || this.ids; const teamIds = row.teamId || this.ids;
@ -477,6 +489,7 @@ export default {
this.$modal.msgSuccess("删除成功"); this.$modal.msgSuccess("删除成功");
}).catch(() => {}); }).catch(() => {});
}, },
/** 导出按钮操作 */ /** 导出按钮操作 */
handleExport() { handleExport() {
this.download('wms/team/export', { this.download('wms/team/export', {

Loading…
Cancel
Save