| | |
| | | :isEdit="false" |
| | | :row="currentReportRowData" |
| | | @refreshData="getList"/> |
| | | <GranulationForm |
| | | v-if="granulationFormVisible" |
| | | v-model:isShow="granulationFormVisible" |
| | | :isEdit="false" |
| | | :row="currentReportRowData" |
| | | @refreshData="getList"/> |
| | | <Detail |
| | | v-if="showDetail" |
| | | v-model:isShow="showDetail" |
| | |
| | | import {productionProductMainListPage} from "@/api/productionManagement/productionProductMain.js"; |
| | | import {userListNoPageByTenantId} from "@/api/system/user.js"; |
| | | import InputModal from "@/views/productionManagement/productionReporting/Input.vue"; |
| | | import VoltageSortingForm from "@/views/productionManagement/workOrder/components/VoltageSortingForm.vue"; |
| | | |
| | | const VoltageSortingForm = defineAsyncComponent(() => import("@/views/productionManagement/workOrder/components/VoltageSortingForm.vue")); |
| | | const CopperPrintingForm = defineAsyncComponent(() => import("@/views/productionManagement/workOrder/components/CopperPrintingForm.vue")); |
| | | const GranulationForm = defineAsyncComponent(() => import("@/views/productionManagement/workOrder/components/GranulationForm.vue")); |
| | | const Detail = defineAsyncComponent(() => import("@/views/productionManagement/productionReporting/components/Detail.vue")); |
| | | |
| | | |
| | |
| | | const isShowInput = ref(false); |
| | | const copperPrintingFormVisible = ref(false); |
| | | const voltageSortingFormVisible = ref(false); |
| | | const granulationFormVisible = ref(false); |
| | | const showDetail = ref(false); |
| | | const isShowingId = ref(0); |
| | | const showInput = row => { |
| | |
| | | copperPrintingFormVisible.value = true; |
| | | } else if (row.process === '电压分选') { |
| | | voltageSortingFormVisible.value = true; |
| | | } else if (row.process === '造粒') { |
| | | granulationFormVisible.value = true; |
| | | } else { |
| | | showDetail.value = true; |
| | | } |