|
@@ -116,6 +116,7 @@
|
|
|
</tempalte>
|
|
</tempalte>
|
|
|
</avue-form>
|
|
</avue-form>
|
|
|
</trade-card>
|
|
</trade-card>
|
|
|
|
|
+ {{ itemIds }}
|
|
|
<trade-card title="货物明细">
|
|
<trade-card title="货物明细">
|
|
|
<avue-crud :option="option" :data="form.agentItemsList" id="out-table" ref="crud"
|
|
<avue-crud :option="option" :data="form.agentItemsList" id="out-table" ref="crud"
|
|
|
@selection-change="selectionChange" @select="selectHandle"
|
|
@selection-change="selectionChange" @select="selectHandle"
|
|
@@ -251,7 +252,7 @@
|
|
|
<c-upload :data="form.filesCenterList" :enumerationValue="76"
|
|
<c-upload :data="form.filesCenterList" :enumerationValue="76"
|
|
|
deleteUrl="/blade-purchase-sales/orderfiles/update" display :disabled="editDisabled"></c-upload>
|
|
deleteUrl="/blade-purchase-sales/orderfiles/update" display :disabled="editDisabled"></c-upload>
|
|
|
</div>
|
|
</div>
|
|
|
- <business-reports :id="form.id" ref="print" businessValue="MYDL"></business-reports>
|
|
|
|
|
|
|
+ <business-reports :id="form.id" :itemIds="itemIds" ref="print" businessValue="MYDL"></business-reports>
|
|
|
<reports :id="form.id" :assemblyForm="form" businessValue="MYDL" ref="report"></reports>
|
|
<reports :id="form.id" :assemblyForm="form" businessValue="MYDL" ref="report"></reports>
|
|
|
<!--审核弹窗-->
|
|
<!--审核弹窗-->
|
|
|
<el-dialog append-to-body title="审批进度" class="el-dialogDeep" :visible.sync="checkScheduleDialog" width="40%"
|
|
<el-dialog append-to-body title="审批进度" class="el-dialogDeep" :visible.sync="checkScheduleDialog" width="40%"
|
|
@@ -853,7 +854,8 @@ export default {
|
|
|
prop: 'remarks'
|
|
prop: 'remarks'
|
|
|
}
|
|
}
|
|
|
]
|
|
]
|
|
|
- }
|
|
|
|
|
|
|
+ },
|
|
|
|
|
+ itemIds:null
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
components: {
|
|
components: {
|
|
@@ -1083,6 +1085,15 @@ export default {
|
|
|
});
|
|
});
|
|
|
},
|
|
},
|
|
|
selectionChange(list) {
|
|
selectionChange(list) {
|
|
|
|
|
+ let ids=[]
|
|
|
|
|
+ list.forEach(e=>{
|
|
|
|
|
+ ids.push(e.id)
|
|
|
|
|
+ })
|
|
|
|
|
+ if(ids.length){
|
|
|
|
|
+ this.itemIds=ids.join(',')
|
|
|
|
|
+ }else{
|
|
|
|
|
+ this.itemIds=null
|
|
|
|
|
+ }
|
|
|
this.selectionList = list;
|
|
this.selectionList = list;
|
|
|
},
|
|
},
|
|
|
selectHandle(selection, row) {
|
|
selectHandle(selection, row) {
|