Compare commits

..

No commits in common. '7a03181d04c416579ac10f47724c20bdb4f5d93b' and '94e2170923f61585374217a741bc58b7f0790b1e' have entirely different histories.

  1. 2
      src/views/firstOrder/components/consumableDialog.vue
  2. 1
      src/views/firstOrder/components/inDialog.vue
  3. 11
      src/views/firstOrder/components/outDialog.vue
  4. 10
      src/views/secondOrder/components/outDialog.vue

@ -1,6 +1,6 @@
<template>
<el-dialog :close-on-click-modal="false" :title="demandDialogTitle" :visible.sync="consumableVisible"
:append-to-body="true" width="70%" @close="handleCancel" fullscreen>
:append-to-body="true" width="70%" @close="handleCloseDetail" fullscreen>
<basic-container class="dialog-content">
<avue-crud :option="option" :table-loading="loading" :data="data" ref="crud" v-model="form"
:page.sync="page" :permission="permissionList" @row-del="rowDel" @search-change="searchChange"

@ -616,6 +616,7 @@ export default {
ldOnePutStorageDetailVOList: [], //
},
inTableData: [],
inBatchDialogVisible: false, //
batchType: "", //
materialsType: "",

@ -428,7 +428,7 @@
v-if="consumableVisible"
:consumableVisible="consumableVisible"
:demandDialogTitle="demandDialogTitle"
@handleCloseDetail="closeDialog"
@handleCloseDetail="handleCloseDetail"
@confirm="confirm"
>
</consumableDialog>
@ -693,11 +693,8 @@ export default {
//
handleCloseDetail() {
this.outDialogVisible = false;
this.$emit("handleCloseDetail");
},
closeDialog() {
this.consumableVisible = false;
this.$emit("handleCloseDetail");
},
//
async getQuarterList() {
@ -837,8 +834,8 @@ export default {
getDepartmentName(departmentId) {
const department = this.list.find(
(item) => item.departmentId === departmentId
)
return department ? department.department : ""
);
return department ? department.department : "";
},
//
async getMaterialList() {

@ -521,15 +521,6 @@ export default {
},
handleCloseDetail() {
this.outDialogVisible = false;
<<<<<<< HEAD
this.$emit("handleCloseDetail");
},
//
closeDialog() {
this.categoryVisible = false
},
=======
this.$emit("handleCloseDetail");
},
@ -537,7 +528,6 @@ export default {
this.categoryVisible = false;
},
>>>>>>> 94e2170923f61585374217a741bc58b7f0790b1e
inInit() {
if (this.outDialogType != "add") {
getDetails({ twoOutStorageId: this.rowData.id }).then((res) => {

Loading…
Cancel
Save