diff --git a/src/views/emis/emisTmsSiteBatch/BigBatchGroupMgnt.vue b/src/views/emis/emisTmsSiteBatch/BigBatchGroupMgnt.vue
index 07a5bb9c..3df5c382 100644
--- a/src/views/emis/emisTmsSiteBatch/BigBatchGroupMgnt.vue
+++ b/src/views/emis/emisTmsSiteBatch/BigBatchGroupMgnt.vue
@@ -4,10 +4,10 @@
-
+
-
-
+
+
@@ -38,7 +38,8 @@ export default {
return {
activeTab:'billList',
billTabs:[],
- openCreateNew:false,
+ openEditForm:false,
+ batchId:null,
};
},
created() {
@@ -48,7 +49,12 @@ export default {
},
onCreateBatch(){
- this.openCreateNew=true;
+ this.openEditForm=true;
+ this.activeTab='batchEdit';
+ },
+ onUpdateBatch(batchId){
+ this.batchId=batchId;
+ this.openEditForm=true;
this.activeTab='batchEdit';
},
@@ -62,11 +68,11 @@ export default {
}
},
handleFormChanged(){
- this.openCreateNew=false;
+ this.openEditForm=false;
this.activeTab="billList";
},
cancelForm(){
- this.openCreateNew=false;
+ this.openEditForm=false;
this.activeTab="billList";
},
removeTab(targetName) {
diff --git a/src/views/emis/emisTmsSiteBatch/panel/BigBatchPanel.vue b/src/views/emis/emisTmsSiteBatch/panel/BigBatchPanel.vue
index a9a2bdb9..3d89e424 100644
--- a/src/views/emis/emisTmsSiteBatch/panel/BigBatchPanel.vue
+++ b/src/views/emis/emisTmsSiteBatch/panel/BigBatchPanel.vue
@@ -417,14 +417,13 @@ export default {
this.$modal.msgSuccess('操作成功');
this.getList();
},
-
handleDown(){
},
/** 修改按钮操作 */
handleUpdate() {
- let id = this.ids[0]
- this.$emit("onUpdate",id);
+ // let id = this.ids[0]
+ this.$emit("onUpdate",this.ids);
},
handleFormChanged(){