flx:修改摄像机分组回显 工作票id丢失

This commit is contained in:
Rain_ 2025-09-27 13:46:58 +08:00
parent 74ff7ef35d
commit f7cf425848
2 changed files with 44 additions and 14 deletions

View File

@ -2237,12 +2237,31 @@ export default {
this.addGroupDialog = true; this.addGroupDialog = true;
this.addGroupForm = JSON.parse(JSON.stringify(item)); this.addGroupForm = JSON.parse(JSON.stringify(item));
this.$nextTick(() => { this.$nextTick(() => {
if (this.addGroupForm.parentObj) { const find = this.findNodeById(this.videoTreeData, item.parentId);
this.selectVal = JSON.parse(this.addGroupForm.parentObj).groupName; if(find) {
this.selectVal = find.groupName;
this.$refs.groupTree.setCurrentKey(this.addGroupForm.parentId); this.$refs.groupTree.setCurrentKey(this.addGroupForm.parentId);
} }
// if (this.addGroupForm.parentObj) {
// this.selectVal = JSON.parse(this.addGroupForm.parentObj).groupName;
// this.$refs.groupTree.setCurrentKey(this.addGroupForm.parentId);
// }
}); });
}, },
findNodeById(node, id) {
const find = node.find((item) => item.id === id);
if (find) {
return find;
}
for (let child of node) {
if (child.children && child.children.length > 0) {
const found = this.findNodeById(child.children, id);
if (found) return found;
}
}
return null;
},
deleteGroupFn(item) { deleteGroupFn(item) {
// //
this.$confirm( this.$confirm(
@ -2607,17 +2626,23 @@ export default {
? obj.enterpriseIds.split(",") ? obj.enterpriseIds.split(",")
: []; : [];
this.$nextTick(() => { this.$nextTick(() => {
if (this.currentVideoTypeDetail.parentObj) { const find = this.findNodeById(this.videoTreeData, obj.groupId);
this.selectFormVal = JSON.parse( if(find) {
this.currentVideoTypeDetail.parentObj this.selectFormVal = find.groupName;
).groupName; this.$refs.groupTree.setCurrentKey(this.currentVideoTypeDetail.groupId);
this.selectFormTreeData = JSON.parse(
this.currentVideoTypeDetail.parentObj
);
this.$refs.groupFormTree.setCurrentKey(
this.currentVideoTypeDetail.parentId
);
} }
// if (this.currentVideoTypeDetail.parentObj) {
// this.selectFormVal = JSON.parse(
// this.currentVideoTypeDetail.parentObj
// ).groupName;
// this.selectFormTreeData = JSON.parse(
// this.currentVideoTypeDetail.parentObj
// );
// this.$refs.groupFormTree.setCurrentKey(
// this.currentVideoTypeDetail.parentId
// );
// }
}); });
console.log("编辑内容", obj); console.log("编辑内容", obj);
}, },

View File

@ -1390,6 +1390,7 @@ export default {
} }
}, },
onExamineClick(row) { onExamineClick(row) {
console.log(112233, row)
this.workTicketId = row.id; this.workTicketId = row.id;
this.getWorkTicketQueryById(); this.getWorkTicketQueryById();
this.getWorkTicketHistoryList(); this.getWorkTicketHistoryList();
@ -1700,8 +1701,10 @@ export default {
}); });
}, },
onChangeState(operateStatus) { onChangeState(operateStatus) {
console.log(55555, this.workTicketId);
const workTicketId = this.workTicketId;
let data = { let data = {
id: this.workTicketId, id: workTicketId,
projectSn: this.projectSn, projectSn: this.projectSn,
operateStatus, operateStatus,
}; };
@ -1711,8 +1714,10 @@ export default {
this.initWorkTicketClose(); this.initWorkTicketClose();
this.getWorkTicketList(); this.getWorkTicketList();
this.getWorkTicketCountWorkTicket(); this.getWorkTicketCountWorkTicket();
console.log(44444, workTicketId);
this.onExamineClick({ this.onExamineClick({
id: this.workTicketId, id: workTicketId,
}); });
} }
}); });