|
@@ -1349,13 +1349,14 @@
|
|
|
},
|
|
|
// 除基本信息之后的修改
|
|
|
handleOtherEdit(type) {
|
|
|
+ debugger
|
|
|
console.log('除基本信息之后的修改', type);
|
|
|
- this.otherDeatils.show = true;
|
|
|
- this.otherDeatils.isEdit = true;
|
|
|
- let activeTab = this.detailsTabs.filter(item => item.code == this.activeMainTab)[0];
|
|
|
- this.otherDeatils.title = activeTab.label;
|
|
|
if ('table' === type) {
|
|
|
if (this.mainMsg.checkedList.length == 1) {
|
|
|
+ this.otherDeatils.show = true;
|
|
|
+ this.otherDeatils.isEdit = true;
|
|
|
+ let activeTab = this.detailsTabs.filter(item => item.code == this.activeMainTab)[0];
|
|
|
+ this.otherDeatils.title = activeTab.label;
|
|
|
this.otherDeatils.queryKey = this.mainMsg.checkedList[0].id;
|
|
|
console.log(this.otherDeatils, 'this.otherDeatils');
|
|
|
} else {
|
|
@@ -1366,6 +1367,10 @@
|
|
|
}
|
|
|
}
|
|
|
if (this.otherDeatils.queryKey) {
|
|
|
+ this.otherDeatils.show = true;
|
|
|
+ this.otherDeatils.isEdit = true;
|
|
|
+ let activeTab = this.detailsTabs.filter(item => item.code == this.activeMainTab)[0];
|
|
|
+ this.otherDeatils.title = activeTab.label;
|
|
|
// 查询其他标签页列表详情
|
|
|
this.getOtherListDetails(activeTab.code, this.otherDeatils.queryKey);
|
|
|
}
|