|
|
|
|
@ -428,7 +428,7 @@ |
|
|
|
|
v-if="consumableVisible" |
|
|
|
|
:consumableVisible="consumableVisible" |
|
|
|
|
:demandDialogTitle="demandDialogTitle" |
|
|
|
|
@handleCloseDetail="handleCloseDetail" |
|
|
|
|
@handleCloseDetail="closeDialog" |
|
|
|
|
@confirm="confirm" |
|
|
|
|
> |
|
|
|
|
</consumableDialog> |
|
|
|
|
@ -693,9 +693,12 @@ export default { |
|
|
|
|
//关闭新增弹窗 |
|
|
|
|
handleCloseDetail() { |
|
|
|
|
this.outDialogVisible = false; |
|
|
|
|
this.consumableVisible = false; |
|
|
|
|
|
|
|
|
|
this.$emit("handleCloseDetail"); |
|
|
|
|
}, |
|
|
|
|
closeDialog() { |
|
|
|
|
this.consumableVisible = false; |
|
|
|
|
}, |
|
|
|
|
// 获取批量需求单列表 |
|
|
|
|
async getQuarterList() { |
|
|
|
|
try { |
|
|
|
|
@ -834,8 +837,8 @@ export default { |
|
|
|
|
getDepartmentName(departmentId) { |
|
|
|
|
const department = this.list.find( |
|
|
|
|
(item) => item.departmentId === departmentId |
|
|
|
|
); |
|
|
|
|
return department ? department.department : ""; |
|
|
|
|
) |
|
|
|
|
return department ? department.department : "" |
|
|
|
|
}, |
|
|
|
|
//获取单条选择的物资名称列表 |
|
|
|
|
async getMaterialList() { |
|
|
|
|
|